~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.h

  • Committer: Andrew Hutchings
  • Date: 2010-12-15 18:59:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2006.
  • Revision ID: andrew@linuxjedi.co.uk-20101215185955-q12lkja8hdnpjqg7
Make the test look for drizzleadmin failure instead of success as this test is not possible to fix for success on our FreeBSD 8.0 box

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef DRIZZLED_MESSAGE_TABLE_H
23
23
#define DRIZZLED_MESSAGE_TABLE_H
24
24
 
25
 
#include <uuid/uuid.h>
26
 
 
27
25
#include <boost/shared_ptr.hpp>
28
26
#include <drizzled/message/table.pb.h>
29
 
#include <drizzled/identifier.h>
30
27
 
31
28
namespace drizzled {
32
29
namespace message {
34
31
 
35
32
typedef boost::shared_ptr <message::Table> shared_ptr;
36
33
 
37
 
shared_ptr make_shared(identifier::Table::const_reference identifier, const std::string &engine_arg);
38
 
shared_ptr make_shared(const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
39
 
void init(drizzled::message::Table &arg, const std::string &name_arg, const std::string &schema_arg, const std::string &engine_arg);
40
 
void update(drizzled::message::Table &arg);
 
34
class Foo {
 
35
  shared_ptr foo;
 
36
};
41
37
 
42
38
} // namespace table
43
39
} // namespace message