@@ -4,6 +4,7 @@ SET(PLUGIN_export_directive "org_commontk_dicom_examplehost_EXPORT")
SET(PLUGIN_SRCS
ctkDicomExampleHostPlugin.cpp
+ ctkDicomExampleHost.cpp
)
# Files which should be processed by Qts moc
@@ -0,0 +1,5 @@
+#include "ctkDicomExampleHost.h"
+
+ctkDicomExampleHost::ctkDicomExampleHost()
+{
+}
@@ -0,0 +1,12 @@
+#ifndef CTKDICOMEXAMPLEHOST_H
+#define CTKDICOMEXAMPLEHOST_H
+#include <ctkDicomAbstractHost.h>
+class ctkDicomExampleHost : public ctkDicomAbstractHost
+public:
+ ctkDicomExampleHost();
+};
+#endif // CTKDICOMEXAMPLEHOST_H