The enitities and containers of the catalog now go into catalog subfolder Models go into model
13 lines
271 B
C++
13 lines
271 B
C++
#ifndef PGDATABASEOBJECT_H
|
|
#define PGDATABASEOBJECT_H
|
|
|
|
#include "PgServerObject.h"
|
|
|
|
/// Base class for objects that are part of a database
|
|
class PgDatabaseObject: public PgServerObject {
|
|
public:
|
|
using PgServerObject::PgServerObject;
|
|
|
|
};
|
|
|
|
#endif // PGDATABASEOBJECT_H
|