summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/ciao/Server_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/DAnCE/ciao/Server_init.h')
-rw-r--r--TAO/CIAO/DAnCE/ciao/Server_init.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/TAO/CIAO/DAnCE/ciao/Server_init.h b/TAO/CIAO/DAnCE/ciao/Server_init.h
deleted file mode 100644
index d2cbfcc04f5..00000000000
--- a/TAO/CIAO/DAnCE/ciao/Server_init.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// $Id$
-
-/**
- * @file Server_init.h
- *
- * Initializing CIAO Server side ORB, if they need to.
- * I'm also puting some utilities functions here.
- *
- * @author Nanbor Wang <nanbor@cs.wustl.edu>
- */
-
-#ifndef CIAO_SERVER_INIT_H
-#define CIAO_SERVER_INIT_H
-#include /**/ "ace/pre.h"
-
-#include "CIAO_Server_Export.h"
-
-#if !defined ACE_LACKS_PRAGMA_ONCE
-#pragma once
-#endif /* ! ACE_LACKS_PRAGMA_ONCE */
-
-namespace CORBA
-{
- class ORB;
- typedef ORB *ORB_ptr;
-}
-
-namespace CIAO
-{
- /**
- * The initialize routine for any server that need to access
- * component. This routine now simply registers various valuetype
- * factories defined in CIAO_Component.pidl. Currently, this method
- * should be call right after ORB initialization but we should try
- * to register these stuff automatically.
- */
- CIAO_SERVER_Export int Server_init (CORBA::ORB_ptr o);
-
- namespace Utility
- {
- /// Write a string (usually a stringified IOR) to a file
- /// designated by the @c pathname. The file named will always get
- /// overwritten.
- CIAO_SERVER_Export int write_IOR (const char *pathname,
- const char *IOR);
- }
-}
-
-#include /**/ "ace/post.h"
-#endif /* CIAO_SERVER_INIT_H */