Source: /app/hbasic/hbasic/hbdata/hbquery_table.h
|
|
|
|
#ifndef HBQUERYTABLE_H
#define HBQUERYTABLE_H
#include
#include "../gui_db_access/db_design_table.h"
#include "hb_db_table.h"
#include "hbobject.h"
class HBQueryTable : public QObject, public HBObject
{
public:
HBQueryTable( char *name );
/* ------------------------------------------------- */
/* Position of table picture in query editor window. */
short xpos;
short ypos;
short width;
short height;
/* ----------------------------------------- */
/* Pointer to normal table description. */
// DB_TABLE_DESC *table_desc_ptr;
HBDbTable *table_desc_ptr;
/* ------------------------------------------------------- */
/* Pointer to designer widget (used for editing purposes). */
DbDesignTable *design_table;
/* ----------------------------------------- */
/* Columns used from current table in query. */
// QPtrList *query_columns;
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |