1 
2 /* Logic to run the application in a standalone window */
3 
4 
5 class app_runner
6 {
7     public:
8         app_runner();
9         ~app_runner();
10         void RunApplication(int display_index, CWnd *parent = NULL);
11 
12     private:
13         BOOL HaveStartupScreens(const CArray<widget_info *> *screen_list) const;
14 };
15