X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibr2c2%2Fdriver.cpp;h=a587b962d230ed021bfbda24f12a133a370b667f;hb=251270c97a5e5eb8630bc1662a406255dedae90e;hp=ea903afd14bbee7403052975457d2966a004ef4a;hpb=1ff06c5bc46a677fa389ef86c6b26664368f1653;p=r2c2.git diff --git a/source/libr2c2/driver.cpp b/source/libr2c2/driver.cpp index ea903af..a587b96 100644 --- a/source/libr2c2/driver.cpp +++ b/source/libr2c2/driver.cpp @@ -6,6 +6,7 @@ Distributed under the GPL */ #include +#include "centralstation.h" #include "driver.h" #include "dummy.h" #include "intellibox.h" @@ -25,6 +26,8 @@ Driver *Driver::create(const string &str) if(type=="ib" || type=="intellibox") return new Intellibox(params); + else if(type=="cs" || type=="centralstation") + return new CentralStation(params); else if(type=="dummy") return new Dummy;