Complier messes up... it doesnt recognize string
`::string' undeclared (first use here)
`note' undeclared (first use this function)
void addNote() {
cout << "Enter the text for the note: ";
std::string note;
cin.ignore();
gets ( note );
cout << note;
}
Is that what you meant? I also tried string without std:: (because I have using namespace std

but I got the same errors, is there a header file I need or something?