Wt examples 3.1.10
|
00001 // This may look like C code, but it's really -*- C++ -*- 00002 /* 00003 * Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium. 00004 * 00005 * See the LICENSE file for terms of use. 00006 */ 00007 #ifndef LABEL_H_ 00008 #define LABEL_H_ 00009 00010 #include <Wt/WText> 00011 00012 using namespace Wt; 00013 00018 00024 class Label : public WText 00025 { 00026 public: 00027 Label(const WString& text, WContainerWidget *parent); 00028 }; 00029 00032 #endif // LABEL_H_