19 lines
259 B
C
19 lines
259 B
C
|
|
#ifndef MAIN_WINDOW_H
|
||
|
|
#define MAIN_WINDOW_H
|
||
|
|
|
||
|
|
#include "CCWindow.h"
|
||
|
|
#include "CCWebServlet.h"
|
||
|
|
#include "CCTrayMenu.h"
|
||
|
|
|
||
|
|
class MainWindow : public CTL::GWindow{
|
||
|
|
public:
|
||
|
|
MainWindow();
|
||
|
|
~MainWindow();
|
||
|
|
private:
|
||
|
|
CTL::WebServlet m_WebServlet;
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|