Feb 13, 2010 at 4:56am
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
#include <iostream>
#include <string>
#include "Person.h"
namespace std;
Person::Person(string stName)
:m_stName(stName)
{
//Empty
}
void Person::Print() const
{
cout << "Name: " << m_stName << endl;
}
|
I noticed I forgot namespace std; but it still has the error
Last edited on Feb 13, 2010 at 4:56am
Feb 13, 2010 at 5:13am
I get about 500 errors from this project. Oh well maybe it was setup wrong. and its actually 81 errors
Last edited on Feb 13, 2010 at 5:17am