You are currently viewing the BOOK: Professional C++ section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
So I wrote the header file that included Namespace Records and the Class. Then, as instructed, I went on to Employee.cpp and finished setting up the Employee Class fields, accessors and setters, etc. So then, they get p to "EmployeeTest.cpp". They write "using namespace Records;". But when I try to compile the test code, it won't work. Because all of the things I previously wrote in Employee.cpp isn't included. How do I get to make the namespace Records. What am I doing wrong?