2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 09:02:15 +00:00

This commit was manufactured by cvs2svn to create branch 'RC_1_30_0'.

[SVN r17988]
This commit is contained in:
nobody
2003-03-19 02:47:30 +00:00
parent 2d0e0759c7
commit 08f07b0cc6
15 changed files with 269 additions and 0 deletions

16
pyste/example/unions.h Normal file
View File

@@ -0,0 +1,16 @@
namespace unions {
class UnionTest
{
public:
union // unions are not supported for now
{
int i;
short s1;
short s2;
} mBad;
int mGood;
};
}