Jpp  17.3.0-rc.2
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JSTDTypes.hh
Go to the documentation of this file.
1 #ifndef __JLANG__JSTDTYPES__
2 #define __JLANG__JSTDTYPES__
3 
4 /**
5  * \file
6  *
7  * Forward declarations of STD containers.
8  * \author mdejong
9  */
10 
11 namespace std {
12  template<class JElement_t, class JAllocator_t> class vector;
13  template<class JElement_t, class JComparator_t, class JAllocator_t> class set;
14  template<class JElement_t, class JComparator_t, class JAllocator_t> class multiset;
15  template<class JFirst_t, class JSecond_t> class pair;
16  template<class JKey_t, class JValue_t, class JComparator_t, class JAllocator_t> class map;
17  template<class JKey_t, class JValue_t, class JComparator_t, class JAllocator_t> class multimap;
18  template<class Category, class T, class Distance, class Pointer, class Reference> struct iterator;
19 #ifdef _GLIBCXX_USE_CXX11_ABI
20  inline namespace __cxx11 {
21  template<class JElement_t, class JAllocator_t> class list;
22  }
23 #else
24  template<class JElement_t, class JAllocator_t> class list;
25 #endif
26 }
27 
28 #endif
29