Linker Error:Undefined Symbol ATM_c::run() in module Project.cpp
Linker Error:Undefined Symbol ATM_c::ATM_c() in module Project.cpp
ATM_c is a class having a function run() and a constructor.
Declared in .h file and defined in .cpp file.
When I call it in main through the code
it gives the above two errors.
Can someone please help with this...
Linker Error:Undefined Symbol ATM_c::ATM_c() in module Project.cpp
ATM_c is a class having a function run() and a constructor.
Declared in .h file and defined in .cpp file.
When I call it in main through the code
Code:
main
{
....
....
ATM_c atm;
atm.run();
....
....
}
Can someone please help with this...
Comment