Source: object.h


Annotated List
Files
Globals
Hierarchy
Index
#ifndef OBJECT_H
#define OBJECT_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <qobject.h>
#include <qstring.h>

namespace KDB {

/**
 * Base class for all KDB objects. It inherits QObject and provide base
 * error reporting
 */
class Object: public QObject {

    Q_OBJECT

public:

    Object( const char * name = 0);
    virtual ~Object();

    QString error();

protected:

    QString m_error;
};

}

#endif



Generated by: pradu@server.rete.casa on Fri Jul 28 15:15:55 2000, using kdoc 2.0a36.