LeviLamina
Loading...
Searching...
No Matches
App.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/AppPlatformListener.h"
7#include "mc/common/IApp.h"
8
9class App : public ::IApp, public ::AppPlatformListener {
10public:
11 // member variables
12 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 App& operator=(App const&);
20 App(App const&);
21 App();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 1
27 virtual void init() /*override*/;
28
29 // vIndex: 2
30 virtual bool isInited() /*override*/;
31
32 // vIndex: 3
33 virtual void changeContext() /*override*/;
34
35 // vIndex: 4
36 virtual void quit(::std::string const&, ::std::string const&) /*override*/;
37
38 // vIndex: 5
39 virtual bool wantToQuit() /*override*/;
40
41 // vIndex: 12
42 virtual void initImpl() = 0;
43
44 // vIndex: 0
45 virtual ~App() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57
58 // NOLINTEND
59};
Definition AppPlatformListener.h:14
Definition App.h:9
Definition IApp.h:8
Definition Alias.h:14