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