~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/error_message_handler.h

  • Committer: Monty Taylor
  • Date: 2009-08-30 00:26:17 UTC
  • mto: (1130.3.4 memory-file-moves)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090830002617-o57hrj99p6fp1186
Fixed all of the include guards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
3
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
 
 
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 * vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
5
4
 *  Definitions required for Error Message plugin
6
 
 
 
5
 *
7
6
 *  Copyright (C) 2008 Sun Microsystems
8
7
 *
9
8
 *  This program is free software; you can redistribute it and/or modify
20
19
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21
20
 */
22
21
 
23
 
#ifndef DRIZZLED_PLUGIN_ERRMSG_H
24
 
#define DRIZZLED_PLUGIN_ERRMSG_H
 
22
#ifndef DRIZZLED_PLUGIN_ERROR_MESSAGE_HANDLER_H
 
23
#define DRIZZLED_PLUGIN_ERROR_MESSAGE_HANDLER_H
25
24
 
26
25
#include <stdarg.h>
27
26
#include <string>
40
39
                      const char *format, va_list ap)=0;
41
40
};
42
41
 
43
 
#endif /* DRIZZLED_PLUGIN_ERRMSG_H */
 
42
#endif /* DRIZZLED_PLUGIN_ERROR_MESSAGE_HANDLER_H */