From c7e7728ffa70b4fc2846a39f79b9767c37c99f1f Mon Sep 17 00:00:00 2001 From: davidcortesortuno Date: Fri, 14 Jun 2019 11:03:56 +0100 Subject: [PATCH] Added new driver --- native/include/m_driver.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 native/include/m_driver.h diff --git a/native/include/m_driver.h b/native/include/m_driver.h new file mode 100644 index 00000000..3cbf9c71 --- /dev/null +++ b/native/include/m_driver.h @@ -0,0 +1,12 @@ +#pragma once +#include +#include "c_micro_sim.h" + +// Base class for the drivers +class Driver { +public: + Driver() {}; + virtual ~Driver() {std::cout << "Killing base Driver\n";}; + // Will get the parameters from a simulation class + void _setup(MicroSim * sim); +};