1<html> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 4<title>Source listing for Timer.1</title> 5<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> 6<meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> 7<link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> 8<link rel="up" href="../tuttimer1.html" title="Timer.1 - Using a timer synchronously"> 9<link rel="prev" href="../tuttimer1.html" title="Timer.1 - Using a timer synchronously"> 10<link rel="next" href="../tuttimer2.html" title="Timer.2 - Using a timer asynchronously"> 11</head> 12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> 13<table cellpadding="2" width="100%"><tr> 14<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> 15<td align="center"><a href="../../../../../index.html">Home</a></td> 16<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> 17<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> 18<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> 19<td align="center"><a href="../../../../../more/index.htm">More</a></td> 20</tr></table> 21<hr> 22<div class="spirit-nav"> 23<a accesskey="p" href="../tuttimer1.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tuttimer1.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../tuttimer2.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> 24</div> 25<div class="section"> 26<div class="titlepage"><div><div><h4 class="title"> 27<a name="boost_asio.tutorial.tuttimer1.src"></a><a class="link" href="src.html" title="Source listing for Timer.1">Source listing for 28 Timer.1</a> 29</h4></div></div></div> 30<pre class="programlisting">// 31// timer.cpp 32// ~~~~~~~~~ 33// 34// Copyright (c) 2003-2020 Christopher M. Kohlhoff (chris at kohlhoff dot com) 35// 36// Distributed under the Boost Software License, Version 1.0. (See accompanying 37// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 38// 39 40#include <iostream> 41#include <boost/asio.hpp> 42 43int main() 44{ 45 boost::asio::io_context io; 46 47 boost::asio::steady_timer t(io, boost::asio::chrono::seconds(5)); 48 t.wait(); 49 50 std::cout << "Hello, world!" << std::endl; 51 52 return 0; 53} 54</pre> 55<p> 56 Return to <a class="link" href="../tuttimer1.html" title="Timer.1 - Using a timer synchronously">Timer.1 - Using 57 a timer synchronously</a> 58 </p> 59</div> 60<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> 61<td align="left"></td> 62<td align="right"><div class="copyright-footer">Copyright © 2003-2020 Christopher M. 63 Kohlhoff<p> 64 Distributed under the Boost Software License, Version 1.0. (See accompanying 65 file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) 66 </p> 67</div></td> 68</tr></table> 69<hr> 70<div class="spirit-nav"> 71<a accesskey="p" href="../tuttimer1.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tuttimer1.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../tuttimer2.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> 72</div> 73</body> 74</html> 75