mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
24 lines
535 B
C++
24 lines
535 B
C++
|
#ifndef _SQMYSQL_ACCOUNT_HPP_
|
||
|
#define _SQMYSQL_ACCOUNT_HPP_
|
||
|
|
||
|
// ------------------------------------------------------------------------------------------------
|
||
|
#include "Common.hpp"
|
||
|
|
||
|
// ------------------------------------------------------------------------------------------------
|
||
|
namespace SqMod {
|
||
|
|
||
|
/* ------------------------------------------------------------------------------------------------
|
||
|
*
|
||
|
*/
|
||
|
class Statement
|
||
|
{
|
||
|
public:
|
||
|
Statement();
|
||
|
~Statement();
|
||
|
|
||
|
};
|
||
|
|
||
|
} // Namespace:: SqMod
|
||
|
|
||
|
#endif // _SQMYSQL_ACCOUNT_HPP_
|