From 5680aa99001cb50c707c4187cd8ada0c41a573dd Mon Sep 17 00:00:00 2001
From: Tobias Frust <tobiasfrust@gmail.com>
Date: Thu, 30 Jun 2016 10:13:01 +0200
Subject: implemented virtual DetectorModule with simple send via udp

---
 src/main.cpp | 27 ---------------------------
 1 file changed, 27 deletions(-)
 delete mode 100644 src/main.cpp

(limited to 'src/main.cpp')

diff --git a/src/main.cpp b/src/main.cpp
deleted file mode 100644
index 6898a09..0000000
--- a/src/main.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "UDPClient/UDPClient.h"
-
-#include <iostream>
-#include <string>
-
-int main (int argc, char *argv[]){
-
-  std::cout << "Sending UDP packages: " << std::endl;
-
-  std::string address = "192.168.178.33";
-  int port = 1234;
-
-  UDPClient client = UDPClient(address, port);
-
-  std::size_t length{8008};
-
-  char buf[length];
-  for(auto i = 0; i < length; i++){
-    *(buf+i) = i%128;
-  }
-
-
-  client.send(buf, length);
-
-  return 0;
-
-}
-- 
cgit v1.2.3