#include <user_info.hh>
Inheritance diagram for user_collection:

Public Member Functions | |
| user_collection () | |
| Default constructor. | |
| user_collection (const user_collection &original) | |
| Default copy constructor. | |
| virtual void | clear_data () |
| Method to clear currently held data contents in the buffer. | |
| ~user_collection () | |
| Default destructor. | |
This is what created per-event if user specified to store user's information in an event loop. If a user just needs one user_info, it may be an array of length 1.
Definition at line 117 of file user_info.hh.
| user_collection::user_collection | ( | ) | [inline] |
Default constructor.
Definition at line 123 of file user_info.hh.
References clear_data().
00123 : data_base() {clear_data();};
| user_collection::user_collection | ( | const user_collection & | original | ) | [inline] |
Default copy constructor.
Definition at line 126 of file user_info.hh.
00127 : std::vector<user_info>(original), 00128 data_base(original) 00129 {};
| user_collection::~user_collection | ( | ) | [inline] |
| virtual void user_collection::clear_data | ( | ) | [inline, virtual] |
Method to clear currently held data contents in the buffer.
Reimplemented from data_base.
Definition at line 132 of file user_info.hh.
Referenced by user_collection().
1.4.7