aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.hxx
blob: 7015e44cc7b0e219e8aba3e8090a7eec1ff5bffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// file      : odb/statement.hxx
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_STATEMENT_HXX
#define ODB_STATEMENT_HXX

#include <odb/pre.hxx>

#include <odb/forward.hxx>

#include <odb/details/export.hxx>
#include <odb/details/shared-ptr.hxx>

namespace odb
{
  class LIBODB_EXPORT statement: public details::shared_base
  {
  public:
    virtual
    ~statement () = 0;

    statement () {}

  private:
    statement (const statement&);
    statement& operator= (const statement&);

  public:
    virtual const char*
    text () const = 0;
  };
}

#include <odb/post.hxx>

#endif // ODB_MYSQL_STATEMENT_HXX