Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/lang/new_class_id.h @ 9662

Last change on this file since 9662 was 9660, checked in by bensch, 18 years ago

orxonox/trunk: dynamic class ID is on its way

File size: 421 bytes
Line 
1/*!
2 * @file new_class_id.h
3 * @brief Definition of a dynamically allocating ClassID
4 *
5 */
6
7#ifndef _NEW_CLASS_ID_H
8#define _NEW_CLASS_ID_H
9
10#include "type_info.h"
11#include <set>
12#include <string>
13
14//! A class to dynamically allocate ClassID's and support a isA operator
15class NewClassID
16{
17public:
18  NewClassID();
19  ~NewClassID();
20
21private:
22  std::string                   _className;
23
24};
25
26
27#endif /* _NEW_CLASS_ID_H */
Note: See TracBrowser for help on using the repository browser.