1 
2 //  (C) Copyright Edward Diener 2011
3 //  Use, modification and distribution are subject to the Boost Software License,
4 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt).
6 
7 #if !defined(TEST_HAS_STATIC_MEMBER_FUNCTION_HPP)
8 #define TEST_HAS_STATIC_MEMBER_FUNCTION_HPP
9 
10 #include "test_structs.hpp"
11 #include <boost/tti/has_static_member_function.hpp>
12 
13 BOOST_TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION(HaveTheSIntFunction,SIntFunction)
14 BOOST_TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION(TheTIntFunction,TIntFunction)
15 BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION(TSFunction)
16 BOOST_TTI_TRAIT_HAS_STATIC_MEMBER_FUNCTION(Pickedname,SomeStaticFunction)
17 
18 BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION(UnionStaticMemberFunction)
19 
20 #endif // TEST_HAS_STATIC_MEMBER_FUNCTION_HPP
21