pgLab/pglablib/catalog/PgTablespace.h

18 lines
326 B
C
Raw Permalink Normal View History

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