Moved detectorfactory implementation to its own source

This commit is contained in:
Matt Hill
2014-08-26 21:49:08 -04:00
parent 740adabf0f
commit 583e85c036
3 changed files with 11 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
#include "detectorfactory.h"
Detector* createDetector(Config* config)
{
return new DetectorCPU(config);
}