mirror of
https://github.com/boostorg/hana.git
synced 2026-02-02 21:02:15 +00:00
28 lines
544 B
C++
28 lines
544 B
C++
/*
|
|
@copyright Louis Dionne 2014
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
|
|
#include <boost/hana/type.hpp>
|
|
|
|
#include <cassert>
|
|
#include <string>
|
|
using namespace boost::hana;
|
|
|
|
|
|
//! [main]
|
|
struct Person {
|
|
std::string name;
|
|
unsigned int age;
|
|
};
|
|
|
|
bool operator==(Person x, Person y)
|
|
{ return x.name == y.name && x.age == y.age; }
|
|
|
|
int main() {
|
|
Person john{"John Doe", 30};
|
|
assert(type<Person>("John Doe", 30u) == john);
|
|
}
|
|
//! [main]
|