~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session/cache.h

  • 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:
20
20
#ifndef DRIZZLED_SESSION_CACHE_H
21
21
#define DRIZZLED_SESSION_CACHE_H
22
22
 
 
23
#include <list>
 
24
 
23
25
#include "drizzled/session.h"
24
 
#include <list>
 
26
#include "drizzled/visibility.h"
25
27
 
26
28
namespace drizzled
27
29
{
31
33
namespace session
32
34
{
33
35
 
34
 
class Cache 
 
36
class DRIZZLED_API Cache 
35
37
{
36
38
public:
37
39
  typedef std::list<Session::shared_ptr> list;