refactored namespaces and added driverfactory
This commit is contained in:
@@ -7,16 +7,17 @@
|
||||
|
||||
|
||||
#include "InputDriverFactory.h"
|
||||
#include "InputDriver.h"
|
||||
#include "utilities/LoggerFactory.hpp"
|
||||
#include "EventNotifier.h"
|
||||
|
||||
using namespace nlohmann;
|
||||
|
||||
|
||||
namespace Input
|
||||
namespace FlippR_Driver::Input
|
||||
{
|
||||
|
||||
std::shared_ptr<InputDriver> InputDriverFactory::get_InputDriver(std::istream& input_config_stream, std::istream& matrix_config_stream)
|
||||
std::shared_ptr<IInputDriver> InputDriverFactory::get_InputDriver(std::istream& input_config_stream, std::istream& matrix_config_stream)
|
||||
{
|
||||
LoggerFactory::CreateInputLogger();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user