theonlineoasis

VideoCodec/Configuration/Configuration.h

#ifndef CONFIGURATION_H_ #define CONFIGURATION_H_ #include "ConfigurationElement.h" namespace VideoCodec {    class Configuration    {    public:       Configuration(ConfigurationElement* root);       virtual ~Configuration();              ConfigurationElement* GetRoot();       ConfigurationElement* GetConfigurationElement(std::string* name);       void DebugOutput();    private:       ConfigurationElement* root;              void debugOutputConfiguration(ConfigurationElement* element);    }; } #endif /*CONFIGURATION_H_*/