ecfe1f34a1
Altri files modificati per cause spurie (fmkmk problematici) git-svn-id: svn://10.65.10.50/trunk@802 c028cbd2-c16b-5b4b-a496-9718f37d4682
23 lines
497 B
C++
Executable File
23 lines
497 B
C++
Executable File
#ifndef __SYS_CURSOR_H
|
|
#define __SYS_CURSOR_H
|
|
|
|
#ifndef __RELATION_H
|
|
#include <relation.h>
|
|
#endif
|
|
|
|
class TSystem_cursor : public TCursor
|
|
{
|
|
virtual TRecnotype buildcursor(TRecnotype rp);
|
|
|
|
public:
|
|
|
|
void mark_deleted(bool deleted = FALSE);
|
|
void recall() { mark_deleted(FALSE);}
|
|
TSystem_cursor(TRelation* f, const char* filter = "", int key = 1, TRectype* from = NULL, TRectype* to = NULL) : TCursor(f, filter, key, from, to) {}
|
|
virtual ~TSystem_cursor() {}
|
|
};
|
|
|
|
#endif
|
|
// ** EOF syscursor.h
|
|
|