21 lines
311 B
C++
21 lines
311 B
C++
#ifndef TASKCONTROL_H
|
|
#define TASKCONTROL_H
|
|
|
|
#include "InterfaceDefine.hpp"
|
|
#include <wx/grid.h>
|
|
|
|
class TaskControl : public wxPanel
|
|
{
|
|
public:
|
|
TaskControl(wxWindow* parent);
|
|
~TaskControl() override;
|
|
|
|
private:
|
|
void Init();
|
|
void SetGrid();
|
|
|
|
public:
|
|
wxGrid* grid_;
|
|
};
|
|
|
|
#endif // TASKCONTROL_H
|