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

64 lines
1.6 KiB
C++
Raw Normal View History

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