2010-05-20, 10:26 PM
Russt Wrote:No. The class declaration encompasses all method declarations, so your .h would be:
Code:#ifndef STORYWORDMANAGER_H
#define STORYWORDMANAGER_H
class StoryWordManager {
StoryWordManager();
string askText();
};
#endif
Right. I figured it out. The constructor, date members and member functions goes in class declaration.

