~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to drizzled/session_list.h

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_SESSION_LIST_H
21
21
#define DRIZZLED_SESSION_LIST_H
22
22
 
23
 
#include <list>
 
23
#include <vector>
24
24
 
25
25
namespace drizzled
26
26
{
27
27
 
28
28
class Session;
29
 
typedef Session* SessionPtr;
30
 
typedef std::list<SessionPtr> SessionList;
 
29
typedef std::vector<Session *> SessionList;
31
30
SessionList &getSessionList();
32
31
 
33
32
}