/*! * @file object_information_file.h * @brief Definition of a class that helps defining mount point connections */ #ifndef _OBJECT_INFORMATION_FILE_H #define _OBJECT_INFORMATION_FILE_H #include "vertex_array_model.h" //! A class for object informations class ObjectInformationFile : public VertexArrayModel { public: ObjectInformationFile(); virtual ~ObjectInformationFile(); private: }; #endif /* _OBJECT_INFORMATION_FILE_H */