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