aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.hxx
blob: ca6df5a8ca22c168dddc75d5df45b65bbcd56a52 (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
38
// file      : odb/statement.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 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