Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/config/test/abi/abi_test.cpp @ 14

Last change on this file since 14 was 12, checked in by landauf, 18 years ago

added boost

File size: 502 bytes
Line 
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
12char abi_test::virtual_one()const
13{ 
14   return c; 
15}
16
17boost::int32_t abi_test::virtual_two()const
18{ 
19   return i; 
20}
21
22abi_test::abi_test()
23{
24   c = 0x12;
25   i = 0x5678;
26}
27
Note: See TracBrowser for help on using the repository browser.