1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-09 01:07:16 +01:00
SqMod/source/Library/SQLite/Connection.hpp

64 lines
1.7 KiB
C++
Raw Normal View History

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