~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/session.h

  • Committer: Brian Aker
  • Date: 2010-12-02 05:20:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1968.
  • Revision ID: brian@tangent.org-20101202052013-idifz62qat1ayhsn
Style change around session list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define DRIZZLED_GENERATOR_SESSION_H
23
23
 
24
24
#include <boost/thread/mutex.hpp>
25
 
#include "drizzled/session_list.h"
 
25
#include "drizzled/session/cache.h"
26
26
 
27
27
namespace drizzled {
28
28
namespace generator {
29
29
 
30
30
class Session
31
31
{
32
 
  session::Cache::List local_list;
33
 
  session::Cache::List::const_iterator iter;
 
32
  session::Cache::list local_list;
 
33
  session::Cache::list::const_iterator iter;
34
34
 
35
35
public:
36
36