11 lines
288 B
C++
11 lines
288 B
C++
|
// stdafx.cpp : source file that includes just the standard includes
|
||
|
// contacts.pch will be the pre-compiled header
|
||
|
// stdafx.obj will contain the pre-compiled type information
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "Contact.h"
|
||
|
#include "Person.h"
|
||
|
|
||
|
vector<Person*> contact_item;
|
||
|
string errorMsg;
|