rename files
[iotcloud.git] / version2 / src / C / LocalComm.cc
diff --git a/version2/src/C/LocalComm.cc b/version2/src/C/LocalComm.cc
deleted file mode 100644 (file)
index ac4c343..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "LocalComm.h"
-#include "Error.h"
-#include "Table.h"
-
-Array<char> *LocalComm::sendDataToLocalDevice(int64_t deviceId, Array<char> *data) {
-       printf("Passing Locally\n");
-
-       if (deviceId == t1->getMachineId()) {
-               // return t1.localCommInput(data);
-       } else if (deviceId == t2->getMachineId()) {
-               // return t2.localCommInput(data);
-       } else {
-               throw new Error("Cannot send to deviceId using this local comm");
-       }
-
-       return new Array<char>((uint32_t)0);
-}