repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use =default for skeleton copy constructor
[ACE_TAO.git]
/
TAO
/
tests
/
IDLv4
/
structs
/
test.idl
blob
af8c22f546f36e0643e4c6e2e3357c655a2c1f3a
1
struct
EmptyStruct
{
2
};
3
4
struct
StructWithEmptyStruct
{
5
EmptyStruct empty
;
6
};
7
8
#include __TAO_IDL_FEATURES
9
#if TAO_IDL_HAS_STRUCT_INHERITANCE
10
struct
Derived1
:
EmptyStruct
{
11
int16 member1
;
12
};
13
14
struct
Derived2
:
Derived1
{
15
int32 member2
;
16
};
17
#endif