X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibr2c2%2Fdriver.cpp;h=04df5f4e82465f9c8d57ab28b0e24ec222e122bb;hb=8a31a3ab3ab7abda30de0ed3a6d0753760f3bb1d;hp=3b6d64995f56a04c24e52472800e9d6ec8fe24ba;hpb=3313694dbe8775b5fd6e1a7eaafe0be9179fcb85;p=r2c2.git diff --git a/source/libr2c2/driver.cpp b/source/libr2c2/driver.cpp index 3b6d649..04df5f4 100644 --- a/source/libr2c2/driver.cpp +++ b/source/libr2c2/driver.cpp @@ -1,3 +1,4 @@ +#include "arducontrol.h" #include "centralstation.h" #include "driver.h" #include "dummy.h" @@ -20,6 +21,8 @@ Driver *Driver::create(const string &str) return new Intellibox(params); else if(type=="cs" || type=="centralstation") return new CentralStation(params); + else if(type=="ac" || type=="arducontrol") + return new ArduControl(params); else if(type=="dummy") return new Dummy(params);