2018-09-02 10:30:30 +00:00
|
|
|
|
#ifndef PGTABLESPACE_H
|
|
|
|
|
|
#define PGTABLESPACE_H
|
|
|
|
|
|
|
2018-12-25 17:38:13 +01:00
|
|
|
|
#include "PgServerObject.h"
|
2018-09-02 10:30:30 +00:00
|
|
|
|
#include <QString>
|
|
|
|
|
|
#include <libpq-fe.h>
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
2018-12-25 17:38:13 +01:00
|
|
|
|
class PgTablespace: public PgServerObject {
|
2018-09-02 10:30:30 +00:00
|
|
|
|
public:
|
|
|
|
|
|
std::vector<QString> options;
|
|
|
|
|
|
|
2018-12-25 17:38:13 +01:00
|
|
|
|
using PgServerObject::PgServerObject;
|
|
|
|
|
|
QString typeName() const override;
|
2018-09-02 10:30:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // PGTABLESPACE_H
|