~ubuntu-branches/ubuntu/natty/orbit2/natty

« back to all changes in this revision

Viewing changes to test/poa/poatest-basic05.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2006-02-07 23:19:23 UTC
  • mfrom: (4 dapper)
  • mto: (1.2.15 upstream) (7.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20060207231923-3hx81ogatcihtatw
Tags: upstream-2.13.3
ImportĀ upstreamĀ versionĀ 2.13.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
static void
38
38
poatest_test_impl (PortableServer_Servant servant, CORBA_Environment *ev) { }
39
39
 
40
 
PortableServer_ServantBase__epv base_epv = {
 
40
static PortableServer_ServantBase__epv base_epv = {
41
41
        NULL,     /* _private    */
42
42
        NULL,     /* finalize    */
43
43
        NULL      /* default_POA */
44
44
};
45
45
 
46
 
POA_poatest__epv poatest_epv = {
 
46
static POA_poatest__epv poatest_epv = {
47
47
        NULL,                /* _private */
48
48
        poatest_test_impl    /* test     */
49
49
};
50
50
 
51
 
POA_poatest__vepv poatest_vepv = {
 
51
static POA_poatest__vepv poatest_vepv = {
52
52
        &base_epv,      /* _base_epv    */
53
53
        &poatest_epv    /* poatest_epv  */
54
54
};
55
55
 
56
 
POA_poatest poatest_servant = {
 
56
static POA_poatest poatest_servant = {
57
57
        NULL,           /* _private */
58
58
        &poatest_vepv   /* vepv     */
59
59
};