Wtx ~ Wt Extension Library
WtxLib
ManagerWidget.h
1 
2 #ifndef __WTX_SYS_LOOKUP_MANAGERWIDGET_H___
3 #define __WTX_SYS_LOOKUP_MANAGERWIDGET_H___
4 
5 #include <Wt/WContainerWidget.h>
6 #include <Wtx/Dbo/Session.h>
7 
8 namespace Wtx {
9  namespace Sys {
10  namespace Lookup {
11 
13 : public Wt::WContainerWidget
14 {
15  public:
16 
18 
19  Wtx::Dbo::Session * session() const { return m_session; }
20 
21  private:
22 
23  Wtx::Dbo::Session * m_session = nullptr;
24 
25 }; // endclass ManagerWidget
26 
27  } // endnamespace Lookup
28  } // endnamespace Sys
29 } // endnamespace Wtx
30 
31 #endif // #ifndef __WTX_SYS_LOOKUP_MANAGERWIDGET_H___
32 
33 
witty extension library
Definition: Activity.h:51