summaryrefslogtreecommitdiff
path: root/tests/TransportCurrent/Framework/Server_Main.cpp
blob: a11a01d1f0046f614626df9b1fbb2b9c760cfe11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// -*- C++ -*-

// $Id$

#include "Server_Request_Interceptor.h"

/// Prototype
int server_main (int argc,
                 ACE_TCHAR *argv[],
                 Test::Server_Request_Interceptor *cri);

int
test_transport_current (CORBA::ORB_ptr orb);

int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  Test::Server_Request_Interceptor* cri = 0;
  ACE_NEW_RETURN (cri,
                  Test::Server_Request_Interceptor ("test_orb",
                                                    test_transport_current),
                  -1);
  PortableInterceptor::ServerRequestInterceptor_var cri_safe (cri);

  return server_main (argc, argv, cri);
}