~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.cc

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
 
21
21
 
22
 
#include <config.h>
 
22
#include "config.h"
23
23
 
24
24
#include <uuid/uuid.h>
25
25
 
26
 
#include <drizzled/show.h>
27
 
#include <drizzled/message/schema.h>
28
 
#include <drizzled/session.h>
29
 
#include <drizzled/charset.h>
 
26
#include "drizzled/show.h"
 
27
#include "drizzled/message/schema.h"
 
28
#include "drizzled/session.h"
30
29
 
31
 
#include <drizzled/catalog/local.h>
 
30
#include "drizzled/catalog/local.h"
32
31
 
33
32
namespace drizzled {
34
33
namespace message {
35
34
namespace schema {
36
35
 
37
 
shared_ptr make_shared(const identifier::Schema& identifier)
 
36
shared_ptr make_shared(identifier::Schema::const_reference identifier)
38
37
{
39
38
  shared_ptr shared(new message::Schema);
40
39