|
From: Michal M. <mi...@mo...> - 2004-08-11 22:17:05
|
Dane Ensign wrote:
> //students.h
> class students
> {
> public:
> students();
>
> private:
> string fname;
> string lname;
> int scoreWin, scoreWord, scoreExcel, scoreAccess, scorePoint;
> };
std::string fname;
std::string lname;
or put
using namespace std;
before
#include "students.h"
--
Regards,
Michal
|