This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
RelayFile/UserInterface/ControlManager.h

25 lines
383 B
C++

#ifndef CONTROL_MANAGER_H
#define CONTROL_MANAGER_H
#include "HeaderControl.h"
#include "LocalControl.h"
#include <memory>
class ControlManager
{
public:
ControlManager(wxWindow* parent);
~ControlManager() = default;
private:
void Init();
private:
wxWindow* parent_;
public:
HeaderControl* header_;
LocalControl* local_;
};
#endif // CONTROL_MANAGER_H