mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
18 lines
235 B
C
18 lines
235 B
C
|
#ifndef HTTP_MODEL_H
|
||
|
#define HTTP_MODEL_H
|
||
|
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class Model : public Object {
|
||
|
public:
|
||
|
virtual void create_table();
|
||
|
virtual void drop_table();
|
||
|
virtual void migrate();
|
||
|
|
||
|
Model();
|
||
|
~Model();
|
||
|
|
||
|
protected:
|
||
|
};
|
||
|
|
||
|
#endif
|