Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/mount_points/src/lib/graphics/importer/oif/object_information_file.h @ 10053

Last change on this file since 10053 was 10053, checked in by patrick, 17 years ago

more oif starting procedures

File size: 804 bytes
Line 
1/*!
2 * @file object_information_file.h
3 * @brief Definition of a class that helps defining mount point connections
4*/
5
6#ifndef _OBJECT_INFORMATION_FILE_H
7#define _OBJECT_INFORMATION_FILE_H
8
9#include "base_object.h"
10
11#include "count_pointer.h"
12
13
14//! A class for object informations
15class OIFData : BaseObject
16{
17public:
18  typedef CountPointer<OIFData>    Pointer;
19
20public:
21  OIFData();
22  virtual ~OIFData();
23
24
25
26private:
27
28};
29
30//! A class for object informations
31class ObjectInformationFile : BaseObject
32{
33
34public:
35  ObjectInformationFile();
36  ObjectInformationFile(const std::string& fileName);
37  virtual ~ObjectInformationFile();
38
39  private:
40    void init();
41
42
43private:
44  CountPointer<OIFData>          data;                           //!< the oif data pointer
45
46};
47
48#endif /* _OBJECT_INFORMATION_FILE_H */
Note: See TracBrowser for help on using the repository browser.