15 lines
326 B
C
15 lines
326 B
C
|
#include <applicat.h>
|
||
|
class TCrea_dbf : public TSkeleton_application
|
||
|
{
|
||
|
TString _path;
|
||
|
protected:
|
||
|
virtual bool create();
|
||
|
virtual bool destroy();
|
||
|
protected:
|
||
|
virtual void main_loop() ;
|
||
|
public:
|
||
|
void txt2dbf(const char * dbf,const char *txt, const char *ini=NULL);
|
||
|
void set_path(const char * path ) {_path = path;}
|
||
|
};
|
||
|
|