Member Function Thingy

class:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class CApp {
    private:
        bool            Running;

        SDL_Surface*    Surf_Display;

    public:
        CApp();

        int OnExecute();

    public:
        bool OnInit();

        void OnEvent(SDL_Event* Event);

        void OnLoop();

        void OnRender();

        void OnCleanup();
};


other that might be needed:
1
2
3
4
5
CApp::CApp() {
    Surf_Display = NULL;

    Running = true;
}


Can someone please tell me exactly what CApp().
It is a constructor. It is called when an object of class CApp created.
Thanks for the help.
Topic archived. No new replies allowed.