blob: 0d02bfce7451ba676e8cc6e9aa8ada5c868840ac [file] [log] [blame]
Alexandre Lisionddd731e2014-01-31 11:50:08 -05001// Copyright (C) 2006-2010 David Sugar, Tycho Softworks.
2//
3// This file is part of GNU uCommon C++.
4//
5// GNU uCommon C++ is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Lesser General Public License as published
7// by the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// GNU uCommon C++ is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with GNU uCommon C++. If not, see <http://www.gnu.org/licenses/>.
17
18/**
19 * Placeholder for future classes that require stl support.
20 * @file ucommon/stl.h
21 */
22
23#if defined(OLD_STDCPP) || defined(NEW_STDCPP)
24#if !defined(_MSC_VER) || _MSC_VER >= 1400
25#ifndef _UCOMMON_STL_H_
26#define _UCOMMON_STL_H_
27#define _UCOMMON_STL_EXTENDED_
28
29#ifndef _UCOMMON_PLATFORM_H_
30#include <ucommon/platform.h>
31#endif
32
33#include <list> // example...
34
35NAMESPACE_UCOMMON
36
37/*
38 In the future we may introduce optional classes which require and/or
39 build upon the standard template library. This header indicates how and
40 where they may be added.
41*/
42
43END_NAMESPACE
44
45#endif
46#endif
47#endif