Skip to content

Commit

Permalink
Added new driver
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcortesortuno committed Jun 14, 2019
1 parent aa2aa4b commit c7e7728
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions native/include/m_driver.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#pragma once
#include<iostream>
#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);
};

0 comments on commit c7e7728

Please sign in to comment.