src/driver.h
changeset 7318 632cd0497770
parent 7254 8d62cdb9a120
child 8051 0cb6e84eb367
equal deleted inserted replaced
7317:e61af9d8a2b3 7318:632cd0497770
     9 #include "helpers.hpp"
     9 #include "helpers.hpp"
    10 #include "string.h"
    10 #include "string.h"
    11 #include <string>
    11 #include <string>
    12 #include <map>
    12 #include <map>
    13 
    13 
    14 bool GetDriverParamBool(const char* const* parm, const char* name);
    14 bool GetDriverParamBool(const char * const *parm, const char *name);
    15 int GetDriverParamInt(const char* const* parm, const char* name, int def);
    15 int GetDriverParamInt(const char * const *parm, const char *name, int def);
    16 
    16 
    17 class Driver {
    17 class Driver {
    18 public:
    18 public:
    19 	virtual const char *Start(const char * const *parm) = 0;
    19 	virtual const char *Start(const char * const *parm) = 0;
    20 
    20