forked from Sepanta/console-emulator
Compare commits
3 Commits
e800a4951d
...
4193eb6c09
Author | SHA1 | Date |
---|---|---|
pouya | 4193eb6c09 | 10 months ago |
miladS | 6a7cb62011 | 10 months ago |
miladS | a7de368ccc | 10 months ago |
2 changed files with 19 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||
#ifndef DatabaseManager_H |
|||
#define DatabaseManager_H |
|||
|
|||
class DatabaseManager |
|||
{ |
|||
private: |
|||
char _functionCode; |
|||
|
|||
public: |
|||
DatabaseManager(char functionCode); |
|||
}; |
|||
|
|||
#endif //DatabaseManager_H
|
@ -0,0 +1,6 @@ |
|||
#include "model/DatabaseManager.h" |
|||
|
|||
DatabaseManager::DatabaseManager(char functionCode) |
|||
{ |
|||
_functionCode = functionCode; |
|||
} |
Loading…
Reference in new issue