浏览代码

Added AppServer

ymartelli 15 年之前
父节点
当前提交
d8bf251e92

+ 2 - 0
Plugins/org.commontk.dicom.wg23.app/CMakeLists.txt

@@ -10,12 +10,14 @@ SET(PLUGIN_export_directive "org_commontk_dicom_wg23_app_EXPORT")
 SET(PLUGIN_SRCS
   ctkDicomHostServicePrivate.cpp
   ctkDicomWG23AppPlugin.cpp
+  ctkDicomAppServer.cpp
 )
 
 # Files which should be processed by Qts moc
 SET(PLUGIN_MOC_SRCS
   ctkDicomHostServicePrivate.h
   ctkDicomWG23AppPlugin_p.h
+  ctkDicomAppServer.h
 )
 
 # Qt Designer files which should be processed by Qts uic

+ 33 - 0
Plugins/org.commontk.dicom.wg23.app/ctkDicomAppServer.cpp

@@ -0,0 +1,33 @@
+/*=============================================================================
+
+  Library: CTK
+
+  Copyright (c) 2010 German Cancer Research Center,
+    Division of Medical and Biological Informatics
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+=============================================================================*/
+
+
+#include "ctkDicomAppServer.h"
+
+ctkDicomAppServer::ctkDicomAppServer()
+{
+
+}
+
+ctkDicomAppServer::~ctkDicomAppServer()
+{
+  
+}

+ 38 - 0
Plugins/org.commontk.dicom.wg23.app/ctkDicomAppServer.h

@@ -0,0 +1,38 @@
+/*=============================================================================
+
+  Library: CTK
+
+  Copyright (c) 2010 German Cancer Research Center,
+    Division of Medical and Biological Informatics
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+=============================================================================*/
+
+
+#ifndef CTKDICOMAPPPSERVER_H
+#define CTKDICOMAPPPSERVER_H
+
+class ctkDicomAppServer :
+  public QObject
+{
+  Q_OBJECT
+
+public:
+
+  ctkDicomAppServer();
+  ~ctkDicomAppServer();
+
+}; // ctkDicomAppServer
+
+#endif // CTKDICOMAPPPSERVER_H