00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SCRIPTSYSINFO_H
00021 #define SCRIPTSYSINFO_H
00022
00023 #include "SystemInformation.h"
00024 #include <map>
00025 #include <vector>
00026
00035 class ScriptSystemInformation : public SystemInformation
00036 {
00037 public :
00041 ScriptSystemInformation();
00042
00046 ScriptSystemInformation(std::string aMountPoint,std::string aAgentPath);
00047
00051 ~ScriptSystemInformation();
00052
00059 std::string getInformation(std::string aKey);
00060
00064 std::vector<std::string> availableInformations();
00065
00066 private :
00067
00075 void updateInformations();
00076
00080 std::string mMountPoint;
00081
00085 std::string mAgentPath;
00086 };
00087
00088 #endif //SCRIPTSYSINFO