mirror of
https://github.com/boostorg/convert.git
synced 2026-01-24 05:42:16 +00:00
16 lines
317 B
C++
16 lines
317 B
C++
#ifndef BOOST_CONVERT_EXAMPLE_HPP
|
|
#define BOOST_CONVERT_EXAMPLE_HPP
|
|
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
|
|
struct example
|
|
{
|
|
static void getting_started ();
|
|
static void getting_serious ();
|
|
static void lexical_cast ();
|
|
static void algorithms ();
|
|
};
|
|
|
|
#endif // BOOST_CONVERT_EXAMPLE_HPP
|
|
|