summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asio/src/examples/cpp03/tutorial/timer1/timer.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asio/src/examples/cpp03/tutorial/timer1/timer.cpp')
-rw-r--r--3rdparty/asio/src/examples/cpp03/tutorial/timer1/timer.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/3rdparty/asio/src/examples/cpp03/tutorial/timer1/timer.cpp b/3rdparty/asio/src/examples/cpp03/tutorial/timer1/timer.cpp
deleted file mode 100644
index 79ddf918261..00000000000
--- a/3rdparty/asio/src/examples/cpp03/tutorial/timer1/timer.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// timer.cpp
-// ~~~~~~~~~
-//
-// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
-//
-// Distributed under the Boost Software License, Version 1.0. (See accompanying
-// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-//
-
-#include <iostream>
-#include <asio.hpp>
-#include <boost/date_time/posix_time/posix_time.hpp>
-
-int main()
-{
- asio::io_context io;
-
- asio::deadline_timer t(io, boost::posix_time::seconds(5));
- t.wait();
-
- std::cout << "Hello, world!" << std::endl;
-
- return 0;
-}