Here's my header code. The errors I get are
‘string’ in namespace ‘std’ does not name a type
expected ‘,’ or ‘...’ before ‘newName’
//
//Source file:Assignment.h
//
#ifndef ASSIGNMENT_H
#define ASSIGNMENT_H
class Assignment {
public:
static int numObjs;
Assignment(const char *n = "--default--"); // default constructor
Assignment(const Assignemtn& rhs); // copy constructor
~Assignment(); // destructor
std::string getName() const;
void setName(const string newName);
friend ostream& operator<<(ostream& output, const Assignment& obj);
private:
string naxemame;
int id;
};
#endif
Some help please?
‘string’ in namespace ‘std’ does not name a type
expected ‘,’ or ‘...’ before ‘newName’
//
//Source file:Assignment.h
//
#ifndef ASSIGNMENT_H
#define ASSIGNMENT_H
class Assignment {
public:
static int numObjs;
Assignment(const char *n = "--default--"); // default constructor
Assignment(const Assignemtn& rhs); // copy constructor
~Assignment(); // destructor
std::string getName() const;
void setName(const string newName);
friend ostream& operator<<(ostream& output, const Assignment& obj);
private:
string naxemame;
int id;
};
#endif
Some help please?