All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
pointerSet.h
Go to the documentation of this file.
1 /* pointerSet.h
2  */
3 #ifndef _POINTERSET_H
4 #define _POINTERSET_H
5 
6 #include "osl/stl/hash_set.h"
7 #include "osl/stl/pointerHash.h"
8 
9 namespace osl
10 {
11  namespace container
12  {
13  template <class T>
14  struct PointerSet : public stl::hash_set<const T*, osl::stl::hash<T*> >
15  {
16  };
17  } // namespace container
18 } // namespace osl
19 
20 #endif /* _POINTERSET_H */
21 // ;;; Local Variables:
22 // ;;; mode:c++
23 // ;;; c-basic-offset:2
24 // ;;; End: