00001 00002 00003 00004 #ifndef EDIT_H 00005 #define EDIT_H 00006 00007 #include "AbstractEdit.h" 00008 00009 namespace wkgl { 00010 00016 class Edit : public AbstractEdit 00017 { 00018 public: 00022 Edit( int x, int y, int w, 00023 const char *def_text = NULL ); 00024 00025 }; 00026 } 00027 #endif
1.2.18