cbb608d183
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 1.5 fino alla patch 811 git-svn-id: svn://10.65.10.50/trunk@8985 c028cbd2-c16b-5b4b-a496-9718f37d4682
15 lines
326 B
C++
Executable File
15 lines
326 B
C++
Executable File
#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;}
|
|
};
|
|
|