Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

added the oif ground classes including their resource management system

File size: 742 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 "vertex_array_model.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 : public VertexArrayModel
32{
33
34public:
35  ObjectInformationFile();
36  virtual ~ObjectInformationFile();
37
38
39
40private:
41  CountPointer<OIFData>          data;                           //!< the oif data pointer
42
43};
44
45#endif /* _OBJECT_INFORMATION_FILE_H */
Note: See TracBrowser for help on using the repository browser.