1 // (C) Copyright John Maddock 2003. 2 // Use, modification and distribution are subject to the 3 // Boost Software License, Version 1.0. (See accompanying file 4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6 // See http://www.boost.org/libs/config for the most recent version. 7 8 9 #include "abi_test.hpp" 10 11 virtual_one() const12char abi_test::virtual_one()const 13 { 14 return c; 15 } 16 virtual_two() const17boost::int32_t abi_test::virtual_two()const 18 { 19 return i; 20 } 21 abi_test()22abi_test::abi_test() 23 { 24 c = 0x12; 25 i = 0x5678; 26 } 27 28