Kallisto Linux API
Library for interacting with Kallisto devices
logger_configurator.hpp
Go to the documentation of this file.
1 
42 #ifndef LOGGER_CONFIGURATOR_HPP_
43 #define LOGGER_CONFIGURATOR_HPP_
44 
45 #include "logger_configuration.hpp"
46 
47 //Forward declaration of our friend!
48 namespace kallisto {
49 namespace core {
50 class KallistoCore;
51 }
52 }
53 
54 namespace kallisto {
55 namespace log {
56 
60 class LoggerConfigurator {
61  friend class core::KallistoCore; //Only KallistoCore can configure the logger.
62 
63  private:
69  static void configure(LoggerConfiguration& configuration);
70 };
71 
72 
73 
74 } /* namespace log */
75 } /* namespace kallisto */
76 
77 #endif /* LOGGER_CONFIGURATOR_HPP_ */
Definition: bluetooth_adapter.hpp:52