Panda3D
internalNameCollection.h
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file internalNameCollection.h
10  * @author drose
11  * @date 2002-03-16
12  */
13 
14 #ifndef INTERNALNAMECOLLECTION_H
15 #define INTERNALNAMECOLLECTION_H
16 
17 #include "pandabase.h"
18 #include "pointerToArray.h"
19 #include "internalName.h"
20 
21 /**
22  *
23  */
24 class EXPCL_PANDA_PGRAPH InternalNameCollection {
25 PUBLISHED:
28  void operator = (const InternalNameCollection &copy);
29  INLINE ~InternalNameCollection();
30 
31  void add_name(const InternalName *name);
32  bool remove_name(const InternalName *name);
33  void add_names_from(const InternalNameCollection &other);
34  void remove_names_from(const InternalNameCollection &other);
35  void remove_duplicate_names();
36  bool has_name(const InternalName *name) const;
37  void clear();
38 
39  int get_num_names() const;
40  const InternalName *get_name(int index) const;
41  MAKE_SEQ(get_names, get_num_names, get_name);
42  const InternalName *operator [] (int index) const;
43  int size() const;
44  INLINE void operator += (const InternalNameCollection &other);
45  INLINE InternalNameCollection operator + (const InternalNameCollection &other) const;
46 
47  void output(std::ostream &out) const;
48  void write(std::ostream &out, int indent_level = 0) const;
49 
50 private:
51  typedef PTA(CPT(InternalName)) InternalNames;
52  InternalNames _names;
53 };
54 
55 INLINE std::ostream &operator << (std::ostream &out, const InternalNameCollection &col) {
56  col.output(out);
57  return out;
58 }
59 
60 #include "internalNameCollection.I"
61 
62 #endif
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
Encodes a string name in a hash table, mapping it to a pointer.
Definition: internalName.h:38
void output(std::ostream &out) const
Writes a brief one-line description of the InternalNameCollection to the indicated output stream.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.