diff --git a/db_engine.h b/db_engine.h index 5c4b5ae..f319f02 100755 --- a/db_engine.h +++ b/db_engine.h @@ -3,26 +3,14 @@ class db_engine { public: db_engine(); - - // - create(); - // - open(); - // - save(); - // - show(); - - // - insert(); - // - delete(); - // - select(); - // - project(); - // - product(); - // - union_comp(); + void createCmd(); + //void openCmd(); + void saveCmd(); + void showCmd(); + void insertQuery(); + void deleteQuery(); + void selectQuery(); + void projectQuery(); + void productQuery(); + bool unionComp(); };