ASAPCabinetFE
 
Loading...
Searching...
No Matches
iapp.h
Go to the documentation of this file.
1#ifndef IAPP_H
2#define IAPP_H
3
11class IApp {
12public:
13 virtual ~IApp() = default;
14
18 virtual void run() = 0;
19};
20
21#endif // IAPP_H
Definition iapp.h:11
virtual void run()=0
Run the application's main loop.