Sorry if there is another thread regarding this, but I did not see one...
I am using VisualStudio 2008 to write my C++ programs for school. We are working with classes and I am having trouble with the classes and files communicating with eachother. It is not all of them, just a few of them. I have checked, and double checked, and tripple checked to make sure it wasn't something simple, like a spelling error (fixed one that way, but can't get the others still.
I have the following declarations as part of a class in a header file:
void cdrom::ChangeData()
{
cout << Name << endl << "Would you like to change this information? Y or N\n";
cin >> choice;
if ((choice == 'Y')||(choice == 'y')) **(partial code, i didn't think the whole code section was necessary)**
I have a seperate .cpp file that uses these two pieces of information, and my main file that uses a third. I keep getting an error that the identifier is not found for ChangeData, DisplayInformation and ReturnCost.I am getting the errors specifically in the areas listed below: