UCommon
stl.h
Go to the documentation of this file.
1 // Copyright (C) 2006-2014 David Sugar, Tycho Softworks.
2 // Copyright (C) 2015 Cherokees of Idaho.
3 //
4 // This file is part of GNU uCommon C++.
5 //
6 // GNU uCommon C++ is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU Lesser General Public License as published
8 // by the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // GNU uCommon C++ 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 Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public License
17 // along with GNU uCommon C++. If not, see <http://www.gnu.org/licenses/>.
18 
24 #ifndef UCOMMON_SYSRUNTIME
25 #ifndef _UCOMMON_STL_H_
26 #define _UCOMMON_STL_H_
27 
28 #ifndef _UCOMMON_PLATFORM_H_
29 #include <ucommon/platform.h>
30 #endif
31 
32 #include <list> // example...
33 
34 namespace ucommon {
35 
36 /*
37  In the future we may introduce optional classes which require and/or
38  build upon the standard template library. This header indicates how and
39  where they may be added.
40 */
41 
42 } // namespace ucommon
43 
44 #endif
45 #endif
Various miscellaneous platform specific headers and defines.
Common namespace for all ucommon objects.
Definition: access.h:47