summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/FT_App/FT_Replica.cpp
blob: 6225cfe6cde59da086635dd11adf1318ebfa6eb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* -*- C++ -*- */
//=============================================================================
/**
 *  @file    FT_Replica.cpp
 *
 *  $Id$
 *
 *  This file is part of Fault Tolerant CORBA.
 *  Implement the FT_TEST::Replica IDL interface.
 *
 *  @author Dale Wilson <wilson_d@ociweb.com>
 */
//=============================================================================

#include <tao/Utils/ServantMain.h>
#include "FT_ReplicaFactory_i.h"

int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  TAO::Utils::ServantMain<FT_ReplicaFactory_i> servantMain("TestReplicaFactory");
  return servantMain.Main(argc, argv);
}