Samchon Framework for CPP  1.0.0
ISQLEntity.cpp
1 #include <samchon/protocol/ISQLEntity.hpp>
2 #include <samchon/library/SQLStatement.hpp>
3 
4 using namespace std;
5 using namespace samchon;
6 using namespace samchon::library;
7 using namespace samchon::protocol;
8 
9 ISQLEntity::ISQLEntity()
10 {
11 }
12 
13 void ISQLEntity::load(shared_ptr<SQLStatement>)
14 {
15 }
16 void ISQLEntity::archive(shared_ptr<SQLStatement>)
17 {
18 }
19 
20 auto ISQLEntity::toSQL() const -> string
21 {
22  return "";
23 }
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84
Package of network protocol and libraries.
Definition: protocol.hpp:185
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7