1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-05 08:27:10 +02:00

Added the file structure for the SQLite database wrappers.

This commit is contained in:
Sandu Liviu Catalin
2015-11-01 10:16:49 +02:00
parent dd2473eff1
commit acb0512d43
10 changed files with 367 additions and 0 deletions

View File

@ -0,0 +1,63 @@
#ifndef _LIBRARY_SQLITE_CONNECTION_HPP_
#define _LIBRARY_SQLITE_CONNECTION_HPP_
// ------------------------------------------------------------------------------------------------
namespace SqMod {
namespace SQLite {
/* ------------------------------------------------------------------------------------------------
* ...
*/
class Connection
{
public:
/* --------------------------------------------------------------------------------------------
* ...
*/
Connection();
/* --------------------------------------------------------------------------------------------
* ...
*/
Connection(const Connection & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Connection(Connection && o);
/* --------------------------------------------------------------------------------------------
* ...
*/
~Connection();
/* --------------------------------------------------------------------------------------------
* ...
*/
Connection & operator = (const Connection & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Connection & operator = (Connection && o);
/* --------------------------------------------------------------------------------------------
* ...
*/
protected:
// --------------------------------------------------------------------------------------------
private:
// --------------------------------------------------------------------------------------------
};
} // Namespace:: SQLite
} // Namespace:: SqMod
#endif // _LIBRARY_SQLITE_CONNECTION_HPP_