~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session_list.h

  • Committer: Brian Aker
  • Date: 2010-10-15 03:36:56 UTC
  • mfrom: (1843.7.6 refactor)
  • Revision ID: brian@tangent.org-20101015033656-9u3aptcc6ipoc1vj
This removes two of our dead plugins (the bad schedulers).
Also this fixes help messages to say "schema" instead of "database"
everywhere..

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 <vector>
 
23
#include <list>
24
24
 
25
25
namespace drizzled
26
26
{
27
27
 
28
28
class Session;
29
 
typedef std::vector<Session *> SessionList;
 
29
typedef Session* SessionPtr;
 
30
typedef std::list<SessionPtr> SessionList;
30
31
SessionList &getSessionList();
31
32
 
32
33
}