|
|
#ifndef INDEX_H #define INDEX_H #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <qstring.h> #include "object.h" namespace KDB { /** * @short This class should provide information for an index of a table * * Things such fields involved, ordering, if primary or not and so on. */ class Index : public Object{ Q_OBJECT public: Index(const char * name); virtual ~Index(); }; } #endif
Generated by: pradu@server.rete.casa on Fri Jul 28 15:15:55 2000, using kdoc 2.0a36. |