Wow.
- All those initializations should be done in the constructor.
- Either using namespace std; or prefix those strings with std::
- I don't know if you have it and just haven't included it, but you need a main() function
- If you plan to #include that class file in another program, it should be in a header file (file.h)
That's all that I can see at first glance.