summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp
blob: c10c54d544539a6d44a1d2673371f8fdab8a47c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -*- C++ -*- */
// $Id$

#include "tao_imr_i.h"
#include "ace/OS_main.h"

int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
  TAO_IMR_i tao_imr_i;

  if (tao_imr_i.init (argc, argv) == -1)
    return 1;
  else
    return tao_imr_i.run ();
}