2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-03 09:12:14 +00:00
Files
hana/example/type/construct.cpp
2014-06-09 18:22:33 -04:00

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]