~drizzle-trunk/drizzle/development

1848.5.1 by Vijay Samuel
Merge pushed classes of drizzleslap out into separate classes.
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2010 Vijay Samuel
1848.5.2 by Vijay Samuel
Merge corrections to licensing information.
5
 *  Copyright (C) 2008 MySQL
1848.5.1 by Vijay Samuel
Merge pushed classes of drizzleslap out into separate classes.
6
 *
7
 *  This program is free software; you can redistribute it and/or modify
8
 *  it under the terms of the GNU General Public License as published by
9
 *  the Free Software Foundation; either version 2 of the License, or
10
 *  (at your option) any later version.
11
 *
12
 *  This program is distributed in the hope that it will be useful,
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 *  GNU General Public License for more details.
16
 *
17
 *  You should have received a copy of the GNU General Public License
18
 *  along with this program; if not, write to the Free Software
19
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
 */
21
1848.5.4 by Vijay Samuel
Merge added #ifndef tags
22
#ifndef CLIENT_THREAD_CONTEXT_H
23
#define CLIENT_THREAD_CONTEXT_H
24
1848.5.1 by Vijay Samuel
Merge pushed classes of drizzleslap out into separate classes.
25
#include "client_priv.h"
26
#include "statement.h"
27
#include <string>
28
#include <iostream>
29
30
class ThreadContext 
31
{
32
public:
33
  ThreadContext(Statement *in_stmt,
34
                uint64_t in_limit) :
35
    stmt(in_stmt),
36
    limit(in_limit)
37
  { }
38
39
  ThreadContext() :
40
    stmt(),
41
    limit(0)
42
  { }
43
44
  Statement *getStmt() const
45
  {
46
    return stmt;
47
  }
48
49
  uint64_t getLimit() const
50
  {
51
    return limit;
52
  }
53
54
  void setStmt(Statement *in_stmt)
55
  {
56
    stmt= in_stmt;
57
  }
58
59
  void setLimit(uint64_t in_limit)
60
  {
61
    limit= in_limit;
62
  }  
63
64
private:
65
  Statement *stmt;
66
  uint64_t limit;
67
};
1848.5.4 by Vijay Samuel
Merge added #ifndef tags
68
69
#endif /* CLIENT_THREAD_CONTEXT_H */