1660.1.1
by Brian Aker
Merge in move identifier work. |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2010 Brian Aker
|
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; either version 2 of the License, or
|
|
9 |
* (at your option) any later version.
|
|
10 |
*
|
|
11 |
* This program is distributed in the hope that it will be useful,
|
|
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 |
* GNU General Public License for more details.
|
|
15 |
*
|
|
16 |
* You should have received a copy of the GNU General Public License
|
|
17 |
* along with this program; if not, write to the Free Software
|
|
18 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
19 |
*/
|
|
20 |
||
21 |
#ifndef DRIZZLED_IDENTIFIER_H
|
|
22 |
#define DRIZZLED_IDENTIFIER_H
|
|
23 |
||
2041.3.15
by Brian Aker
Cleanup error usage around identifier usage. |
24 |
#include <string> |
25 |
||
26 |
namespace drizzled { |
|
27 |
||
28 |
class Identifier { |
|
29 |
public: |
|
30 |
typedef const Identifier& const_reference; |
|
31 |
||
32 |
virtual void getSQLPath(std::string &arg) const; |
|
33 |
||
34 |
virtual ~Identifier() |
|
35 |
{ } |
|
36 |
};
|
|
37 |
||
38 |
} // namespace drizzled |
|
39 |
||
1960.1.5
by Brian Aker
Merging in the first pass through the catalog work. |
40 |
#include "drizzled/identifier/catalog.h" |
1660.1.1
by Brian Aker
Merge in move identifier work. |
41 |
#include "drizzled/identifier/schema.h" |
2039.6.3
by Brian Aker
Update for session to have a catalog object. |
42 |
#include "drizzled/identifier/session.h" |
1660.1.1
by Brian Aker
Merge in move identifier work. |
43 |
#include "drizzled/identifier/table.h" |
2008.1.1
by Brian Aker
Adding user identifier that makes use of a shared ptr to handle concurrency |
44 |
#include "drizzled/identifier/user.h" |
1660.1.1
by Brian Aker
Merge in move identifier work. |
45 |
|
2041.3.15
by Brian Aker
Cleanup error usage around identifier usage. |
46 |
|
1660.1.1
by Brian Aker
Merge in move identifier work. |
47 |
#endif /* DRIZZLED_IDENTIFIER_H */ |