Wtx ~ Wt Extension Library
WtxLib
ManagerWidget.h
1 
2 #ifndef __WTX_CRM_COMPANY_MANAGERWIDGET_H___
3 #define __WTX_CRM_COMPANY_MANAGERWIDGET_H___
4 
5 #include <Wt/WContainerWidget.h>
6 #include <Wtx/Dbo/Session.h>
7 
8 namespace Wtx {
9  namespace Crm {
10  namespace Company {
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 Company
28  } // endnamespace Crm
29 } // endnamespace Wtx
30 
31 #endif
32 
33 
witty extension library
Definition: Activity.h:51