| Line | |
|---|
| 1 | #include "everything.h"
|
|---|
| 2 | #include "constants.h"
|
|---|
| 3 | #include <stdio.h>
|
|---|
| 4 |
|
|---|
| 5 | /* DerivedServer bits */
|
|---|
| 6 | POA_test_DerivedServer__epv DerivedServer_epv = { NULL };
|
|---|
| 7 | POA_test_BaseServer__epv BaseServer_epv = {
|
|---|
| 8 | NULL,
|
|---|
| 9 | NULL, /* opPolymorphic */
|
|---|
| 10 | NULL /* attribPolymorphic */
|
|---|
| 11 | };
|
|---|
| 12 | POA_test_B1__epv B1_epv = { NULL };
|
|---|
| 13 | POA_test_B2__epv B2_epv = { NULL };
|
|---|
| 14 | POA_test_C1__epv C1_epv = { NULL };
|
|---|
| 15 | PortableServer_ServantBase__epv DerivedServer_base_epv = {NULL, simple_finalize, NULL};
|
|---|
| 16 | POA_test_DerivedServer__vepv DerivedServer_vepv = {
|
|---|
| 17 | &DerivedServer_base_epv,
|
|---|
| 18 | &BaseServer_epv,
|
|---|
| 19 | &B1_epv,
|
|---|
| 20 | &B2_epv,
|
|---|
| 21 | &C1_epv,
|
|---|
| 22 | &DerivedServer_epv,
|
|---|
| 23 | };
|
|---|
| 24 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.