source: PSPA/Interface_Web/branches/12_03_12-managerComboBox/pspaWT/sources/userInterface/include/GWt_console.h @ 397

Last change on this file since 397 was 397, checked in by garnier, 11 years ago

Améliorations de l'interface graphique

File size: 346 bytes
Line 
1#ifndef GWTCONSOLE_SEEN
2#define GWTCONSOLE_SEEN
3
4#include <iostream>
5
6#include <Wt/WString>
7#include <Wt/WContainerWidget>
8
9using namespace Wt;
10
11using namespace std;
12
13class GWt_console : public WContainerWidget
14{
15   
16public:
17  GWt_console();
18  virtual ~GWt_console();
19  void addConsoleMessage(WString msg);
20private:
21  WText* output_;
22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.