Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~259 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for jayanta87

I got the following error, please help me to resolve this problem.. ui.h:10: error: âloginâ has not been declared db.h:7: error: âloginâ has not been declared controller.cpp: In member function âvoid control::casino_game()â: controller.cpp:15: error: âloginâ was not declared in this scope controller.cpp:15: error: expected `;' before âloâ controller.cpp:34: error: âloâ …

Member Avatar for vijayan121
0
133
Member Avatar for jayanta87

I got the error with the following code :- controller.h [CODE] class control{ public: void casino_game(); void register(registration &); }; [/CODE] controller.cpp [CODE] #include<iostream> #include "controller.h" #include "ui.h" #include "registration.h" #include "db.h" using namespace std; void control::casino_game() { ui uiobj; registration R; db dbobj; int loop=1; uiobj.mainui(); int choice=uiobj.get_choice(); while(loop==1) …

Member Avatar for Ancient Dragon
0
126