All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
recordSet_.h
Go to the documentation of this file.
1 /* recordSet.h
2  */
3 #ifndef _SEARCH_RECORDSET_H
4 #define _SEARCH_RECORDSET_H
5 
7 
8 namespace osl
9 {
10  namespace search
11  {
12  class SimpleHashRecord;
13  }
14 }
15 
16 namespace osl
17 {
18  namespace search
19  {
20  namespace analyzer
21  {
22  class RecordSet : public container::PointerSet<SimpleHashRecord>
23  {
24  public:
25  RecordSet();
26  ~RecordSet();
27  };
28  } // namespace analyzer
29  } // namespace search
30 } // namespace osl
31 
32 #endif /* _SEARCH_RECORDSET_H */
33 // ;;; Local Variables:
34 // ;;; mode:c++
35 // ;;; c-basic-offset:2
36 // ;;; End: