Wittyshare  0.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WsBottomBanner.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2006-Today Guy Deleeuw
3  *
4  * See the LICENSE file for terms of use.
5 */
6 
7 #ifndef _WsBottomBanner_H_
8 #define _WsBottomBanner_H_
9 
10 #include <Wt/WContainerWidget>
11 #include <Wt/WText>
13 
14 class WsBottomBanner : public Wt::WContainerWidget {
15 public :
16  WsBottomBanner(const std::string& rText, Wt::WContainerWidget* parent = 0);
18 
19  const std::string& text() const;
20  void setText(const std::string& rText);
21 
22 private :
23  Wt::WText* m_pWText;
24  std::string m_pString;
25  bool m_bDebug;
26 };
27 
28 #endif // ifdef _WsBottomBanner_H_
29 
std::string m_pString
Wt::WText * m_pWText
WsBottomBanner(const std::string &rText, Wt::WContainerWidget *parent=0)
void setText(const std::string &rText)
const std::string & text() const