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

64 lines
1.7 KiB
C++

#ifndef _LIBRARY_SQLITE_STATEMENT_HPP_
#define _LIBRARY_SQLITE_STATEMENT_HPP_
// ------------------------------------------------------------------------------------------------
namespace SqMod {
namespace SQLite {
/* ------------------------------------------------------------------------------------------------
* ...
*/
class Statement
{
public:
/* --------------------------------------------------------------------------------------------
* ...
*/
Statement();
/* --------------------------------------------------------------------------------------------
* ...
*/
Statement(const Statement & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Statement(Statement && o);
/* --------------------------------------------------------------------------------------------
* ...
*/
~Statement();
/* --------------------------------------------------------------------------------------------
* ...
*/
Statement & operator = (const Statement & o);
/* --------------------------------------------------------------------------------------------
* ...
*/
Statement & operator = (Statement && o);
/* --------------------------------------------------------------------------------------------
* ...
*/
protected:
// --------------------------------------------------------------------------------------------
private:
// --------------------------------------------------------------------------------------------
};
} // Namespace:: SQLite
} // Namespace:: SqMod
#endif // _LIBRARY_SQLITE_STATEMENT_HPP_