mirror of
https://github.com/boostorg/convert.git
synced 2026-01-27 18:52:16 +00:00
16 lines
243 B
C++
16 lines
243 B
C++
#ifndef BOOST_CONVERT_EXAMPLE_HPP
|
|
#define BOOST_CONVERT_EXAMPLE_HPP
|
|
|
|
struct example
|
|
{
|
|
static void getting_started();
|
|
|
|
struct algorithm
|
|
{
|
|
static void strings_to_ints_simple();
|
|
};
|
|
};
|
|
|
|
#endif // BOOST_CONVERT_EXAMPLE_HPP
|
|
|