Go to the documentation of this file.00001
00021 #ifndef RZ_FINDER_MANAGER_H
00022 #define RZ_FINDER_MANAGER_H
00023
00024 #include <vector>
00025 #include <map>
00026 using namespace std;
00027
00028 #include "resourceRequirements.h"
00029 #include "RZ.h"
00030
00031 class RZFinderManager {
00032
00033 private:
00034
00035 static map<ResourceRequirements, vector<RZ> > resourceRequirementsRZSetMap;
00036
00037
00038
00039
00040
00041
00042
00043
00044 public:
00045
00046 static vector<RZ> retrieveRZSet(ResourceRequirements &);
00047
00048 };
00049
00050 #endif