libyui-mga-ncurses  1.0.1
YNCWE.h
1 /*
2  This library is free software; you can redistribute it and/or modify
3  it under the terms of the GNU Lesser General Public License as
4  published by the Free Software Foundation; either version 2.1 of the
5  License, or (at your option) version 3.0 of the License. This library
6  is distributed in the hope that it will be useful, but WITHOUT ANY
7  WARRANTY; without even the implied warranty of MERCHANTABILITY or
8  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
9  License for more details. You should have received a copy of the GNU
10  Lesser General Public License along with this library; if not, write
11  to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
12  Floor, Boston, MA 02110-1301 USA
13 */
14 
15 
16 /*-/
17 
18  File: YNCWE.h
19 
20  Author: Angelo Naselli <anaselli@linux.it>
21 
22 /-*/
23 
24 #ifndef YNCWE_h
25 #define YNCWE_h
26 #include <yui/YExternalWidgets.h>
27 
28 class YNCWE : public YExternalWidgets
29 {
30 public:
31  YNCWE( const std::string& name );
32  virtual ~YNCWE();
33 
34 protected:
35 
36  virtual YExternalWidgetFactory * createExternalWidgetFactory();
37 };
38 
39 #endif //YNCWE_h
Definition: YNCWE.h:28