object.h
Go to the documentation of this file.00001 #ifndef __OBJECT_H
00002 #define __OBJECT_H
00003
00004 #include <vector>
00005 #include <string>
00006 #include <fstream>
00007
00008 class model;
00009
00010 class object{
00011 public:
00012 object(int ID);
00013 int id;
00014 std::vector<model*> models;
00015 std::string name;
00016
00017 void setName(const std::string& Name);
00018 const std::string& getName() const;
00019
00020 model* modelExists(int modelID);
00021
00022 int getID() const;
00023
00024 void writeToFile(std::ofstream& outfile);
00025
00026 };
00027
00028 #endif