midday-commander
Loading...
Searching...
No Matches
Application.h
Go to the documentation of this file.
1//
2// Created by Vojtěch Pašek on 11.05.2023.
3//
4
5#ifndef MIDDAY_COMMANDER_APPLICATION_H
6#define MIDDAY_COMMANDER_APPLICATION_H
7
9#include "State.h"
10
15public:
17 int run();
18private:
22};
23
24
25#endif //MIDDAY_COMMANDER_APPLICATION_H
The main application class.
Definition: Application.h:14
FileView fileView
Definition: Application.h:20
int run()
Definition: Application.cpp:10
Interface interface
Definition: Application.h:19
State state
Definition: Application.h:21
Represents a file view of the Application.
Definition: FileView.h:16
Represents the main interface of the Application.
Definition: Interface.h:22
Holds the global state of the Application.
Definition: State.h:16