mirror of
https://github.com/boostorg/tti.git
synced 2026-01-26 07:02:14 +00:00
26 lines
910 B
C++
26 lines
910 B
C++
#include "test_has_member_data.hpp"
|
|
#include <boost/mpl/assert.hpp>
|
|
|
|
int main()
|
|
{
|
|
|
|
// You can always instantiate without compiler errors
|
|
|
|
boost::tti::has_member_data_aMember<AType,long> aVar;
|
|
boost::tti::has_member_data_someDataMember<AnotherType,double> aVar2;
|
|
|
|
// Compile time asserts
|
|
|
|
BOOST_MPL_ASSERT((boost::tti::has_member_data_AnInt<AType,int>));
|
|
BOOST_MPL_ASSERT((boost::tti::has_member_data_AnInt<AnotherType,long>));
|
|
BOOST_MPL_ASSERT((boost::tti::has_member_data_aMember<AnotherType,bool>));
|
|
BOOST_MPL_ASSERT((boost::tti::CMember<AnotherType,bool>));
|
|
BOOST_MPL_ASSERT((boost::tti::has_member_data_IntBT<AType,AType::BType>));
|
|
BOOST_MPL_ASSERT((boost::tti::NestedData<AType,AType::BType::CType>));
|
|
BOOST_MPL_ASSERT((boost::tti::AOther<AnotherType,AType>));
|
|
BOOST_MPL_ASSERT((boost::tti::has_member_data_ONestStr<AnotherType,AType::AStructType>));
|
|
|
|
return 0;
|
|
|
|
}
|