~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/resource_context.h

  • Committer: Monty Taylor
  • Date: 2010-12-27 18:39:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101227183911-atgh0kcubflay0b9
Added back INNOBASE_SKIP_WARNINGS for solaris. Also dealt with unused params.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#pragma once
22
 
 
23
 
#include <drizzled/common_fwd.h>
24
 
 
25
 
namespace drizzled {
 
21
#ifndef DRIZZLED_RESOURCE_CONTEXT_H
 
22
#define DRIZZLED_RESOURCE_CONTEXT_H
 
23
 
 
24
#include <cstddef>
 
25
 
 
26
namespace drizzled
 
27
{
 
28
 
 
29
namespace plugin
 
30
{
 
31
class MonitoredInTransaction;
 
32
class TransactionalStorageEngine;
 
33
class XaResourceManager;
 
34
}
26
35
 
27
36
/**
28
37
 * Either statement transaction or normal transaction - related
148
157
 
149
158
} /* namespace drizzled */
150
159
 
 
160
#endif /* DRIZZLED_RESOURCE_CONTEXT_H */