mirror of
https://github.com/boostorg/convert.git
synced 2026-01-28 07:02:16 +00:00
19 lines
326 B
C++
19 lines
326 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 ();
|
|
|
|
struct algorithm
|
|
{
|
|
static void strings_to_ints_simple();
|
|
};
|
|
};
|
|
|
|
#endif // BOOST_CONVERT_EXAMPLE_HPP
|
|
|