pointerSet.h
Go to the documentation of this file.
00001 /* pointerSet.h
00002  */
00003 #ifndef _POINTERSET_H
00004 #define _POINTERSET_H
00005 
00006 #include "osl/stl/hash_set.h"
00007 #include "osl/stl/pointerHash.h"
00008 
00009 namespace osl
00010 {
00011   namespace container
00012   {
00013     template <class T>
00014     struct PointerSet : public stl::hash_set<const T*, osl::stl::hash<T*> >
00015     {
00016     };
00017   } // namespace container
00018 } // namespace osl
00019 
00020 #endif /* _POINTERSET_H */
00021 // ;;; Local Variables:
00022 // ;;; mode:c++
00023 // ;;; c-basic-offset:2
00024 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines