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

64 lines
1.7 KiB
C++
Raw Normal View History

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