9e87d4da39
git-svn-id: svn://10.65.10.50/trunk@3294 c028cbd2-c16b-5b4b-a496-9718f37d4682
12 lines
279 B
C++
Executable File
12 lines
279 B
C++
Executable File
|
|
class TETI_form : public TForm
|
|
{
|
|
public:
|
|
|
|
virtual TCursor* cursor() const;
|
|
TETI_form(): TForm() {};
|
|
TETI_form(const char* form, const char * code = "", int editlevel = 0, const char* desc = "")
|
|
: TForm(form,code,editlevel,desc) {};
|
|
virtual ~TETI_form() {};
|
|
};
|