00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 // 00036 00037 #if !defined(DistanceResultsRepository_hpp) 00038 #define DistanceResultsRepository_hpp 00039 00040 #include "PerformanceCriteria/TypeRepository.h" 00041 #include "WorkCell.hpp" 00042 #include "DistanceResults.hpp" 00043 00044 00045 00046 namespace OSCAR { 00047 00056 class DistanceResultsRepository : public TypeRepository<DistanceResults> { 00057 public: 00058 00068 DistanceResultsRepository(unsigned int maxNoSolutions, Node* manipulator, WorkCell &workCell, const String& objectName = String()); 00069 00077 DistanceResultsRepository(unsigned int maxNoSolutions, const String& objectName = String()); 00078 00084 DistanceResultsRepository(const DistanceResultsRepository& repo); 00085 00092 DistanceResultsRepository& operator=(const DistanceResultsRepository& repo); 00093 00097 virtual ~DistanceResultsRepository(); 00098 00099 00100 protected: 00101 WorkCell* cell; 00102 Node* arm; 00103 bool created; 00104 }; 00105 00106 } //namespace OSCAR 00107 #endif // DistanceResultsRepository_hpp
| RRG Homepage | OSCAR Overview | OSCAR Tutorials | Simulations |