diff options
author | Tobias Frust <tobiasfrust@gmail.com> | 2016-06-30 10:27:20 +0200 |
---|---|---|
committer | Tobias Frust <tobiasfrust@gmail.com> | 2016-06-30 10:27:20 +0200 |
commit | dbf28e725f062744222559257abe64d8a39a9d50 (patch) | |
tree | 046cdf556175423454c4b012db82499b02ef04ff /src/main_client.cpp | |
parent | 5680aa99001cb50c707c4187cd8ada0c41a573dd (diff) | |
download | ods-dbf28e725f062744222559257abe64d8a39a9d50.tar.gz ods-dbf28e725f062744222559257abe64d8a39a9d50.tar.bz2 ods-dbf28e725f062744222559257abe64d8a39a9d50.tar.xz ods-dbf28e725f062744222559257abe64d8a39a9d50.zip |
bug fixes
Diffstat (limited to 'src/main_client.cpp')
-rw-r--r-- | src/main_client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main_client.cpp b/src/main_client.cpp index 363f610..451bd02 100644 --- a/src/main_client.cpp +++ b/src/main_client.cpp @@ -11,9 +11,9 @@ int main (int argc, char *argv[]){ auto configPath = std::string { "config.cfg" }; std::string address = "10.0.0.10"; - DetectorModule<unsigned short> detModule0 = DetectorModule<unsigned short>(0, address, configPath); + DetectorModule detModule0 = DetectorModule(0, address, configPath); - detModule0.sendPeriodically(5000); + detModule0.sendPeriodically(5000u); return 0; |