00001
00002
00003
00004
00005 #ifndef EQ_CONFIG_PARAMS_H
00006 #define EQ_CONFIG_PARAMS_H
00007
00008 #include <eq/base/base.h>
00009 #include <string>
00010
00011 namespace eq
00012 {
00013 class EQ_EXPORT ConfigParams
00014 {
00015 public:
00016 ConfigParams();
00017 virtual ~ConfigParams(){}
00018
00019 ConfigParams& operator = ( const ConfigParams& rhs );
00020
00021 void setRenderClient( const std::string& renderClient );
00022 const std::string& getRenderClient() const;
00023
00024 void setWorkDir( const std::string& workDir );
00025 const std::string& getWorkDir() const;
00026
00027 private:
00028 std::string _renderClient;
00029 std::string _workDir;
00030 };
00031 }
00032
00033 #endif // EQ_CONFIG_PARAMS_H
00034