1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/source/Library/SQLite/Connection.hpp
2015-11-01 10:16:49 +02:00

64 lines
1.7 KiB
C++

#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_