RelayFile/UserInterface/ControlManager.h

25 lines
383 B
C
Raw Normal View History

2025-05-08 21:44:16 +08:00
#ifndef CONTROL_MANAGER_H
#define CONTROL_MANAGER_H
#include "HeaderControl.h"
#include "LocalControl.h"
#include <memory>
class ControlManager
{
public:
ControlManager(wxWindow* parent);
~ControlManager() = default;
2025-05-08 22:11:39 +08:00
private:
2025-05-08 21:44:16 +08:00
void Init();
2025-05-08 22:11:39 +08:00
private:
2025-05-08 21:44:16 +08:00
wxWindow* parent_;
2025-05-08 22:11:39 +08:00
public:
2025-05-08 21:44:16 +08:00
HeaderControl* header_;
LocalControl* local_;
};
#endif // CONTROL_MANAGER_H