16 lines
140 B
C++
16 lines
140 B
C++
#include <pqxx/pqxx>
|
|
|
|
#ifndef DATABASE_H
|
|
#define DATABASE_H
|
|
|
|
class Database
|
|
{
|
|
private:
|
|
|
|
|
|
public:
|
|
Database();
|
|
};
|
|
|
|
#endif /* DATABASE_H */
|