I have been given a video program with several header files and cpp files and I had to create some customer classes with the appropriate header and cpp files to add to it. I have been able to #include my header files in my cpp files but when I tried to #include them to the video program, I'm getting the "cannot open source file" errors. They are in the same directory as the program and other files and I copied the code from the other cpp files to avoid typos. Any suggestions on why this is happening? I am using Visual Studio 2010 Express to edit my programs.
// video program - it's the 2 h files at the end
#include <iostream>
#include <fstream>
#include <string>
#include "videoType.h"
#include "videoListType.h"
#include "customerType.h"
#include "CustomerListClass.h"
usingnamespace std;
// CustomerListType.h has no errors
#include <iostream>
#include <string>
#include "CustomerListClass.h"
#include "customerType.h"
usingnamespace std;