~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_error.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
 
21
 
 
22
 
#ifndef DRIZZLED_SQL_ERROR_H
23
 
#define DRIZZLED_SQL_ERROR_H
24
 
 
 
20
#pragma once
 
21
 
 
22
#include <bitset>
 
23
#include <drizzled/error_t.h>
 
24
#include <drizzled/lex_string.h>
25
25
#include <drizzled/memory/sql_alloc.h>
26
 
#include <drizzled/lex_string.h>
27
 
 
28
 
#include <drizzled/error_t.h>
29
 
 
30
 
#include <bitset>
31
 
 
32
26
#include <drizzled/visibility.h>
33
27
 
34
 
namespace drizzled
35
 
{
 
28
namespace drizzled {
36
29
 
37
 
class DRIZZLE_ERROR: public memory::SqlAlloc
 
30
class DRIZZLE_ERROR : public memory::SqlAlloc
38
31
{
39
32
public:
40
33
  static const uint32_t NUM_ERRORS= 4;
77
70
 
78
71
} /* namespace drizzled */
79
72
 
80
 
#endif /* DRIZZLED_SQL_ERROR_H */