12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef _QUERYLINE_H
- #define _QUERYLINE_H
- #include <api/skin/nakedobject.h>
- #include <api/db/subqueryserver.h>
- #define QUERYLINE_PARENT NakedObject
- class QueryLine : public QUERYLINE_PARENT, public SubQueryServerI {
- public:
-
-
- QueryLine(const char *query=NULL);
-
-
- virtual ~QueryLine() { }
-
-
- virtual void setQuery(const char *query);
-
-
- int setAuto(int bv);
- protected:
- int autoquery;
- private:
- String querytext, autofield;
- };
- #endif
|