17 #ifndef ICONFIGURATIONSTORAGE_HPP_ 
   18 #define ICONFIGURATIONSTORAGE_HPP_ 
   22 #ifdef KAA_USE_CONFIGURATION 
   35 class IConfigurationStorage {
 
   37     typedef std::vector<std::uint8_t> byte_buffer;
 
   38     virtual ~IConfigurationStorage() {}
 
   45     virtual void        saveConfiguration(
const byte_buffer &bytes) = 0;
 
   52     virtual byte_buffer loadConfiguration() = 0;