Update of /cvsroot/ccmtools/cpp-environment/ccm/remote/RemoteComponents
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27321/ccm/remote/RemoteComponents
Modified Files:
Makefile.mico
Added Files:
ccmtools.h ccmtools.cc
Log Message:
Added Interix specific code
--- NEW FILE: ccmtools.h ---
/*
* MICO --- an Open Source CORBA implementation
* Copyright (c) 1997-2006 by The Mico Team
*
* This file was automatically generated. DO NOT EDIT!
*/
#include <CORBA.h>
#include <mico/throw.h>
#ifndef __CCMTOOLS_H__
#define __CCMTOOLS_H__
namespace ccmtools
[...1110 lines suppressed...]
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_InvalidConfiguration;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_RemoveFailure;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_CCMHome;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_CCMObject;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_CreateFailure;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_KeylessCCMHome;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_HomeNotFound;
extern CORBA::StaticTypeInfo *_marshaller_ccmtools_corba_Components_HomeFinder;
extern CORBA::StaticTypeInfo *_marshaller__seq_ccmtools_corba_Components_CCMHome;
#endif
--- NEW FILE: ccmtools.cc ---
/*
* MICO --- an Open Source CORBA implementation
* Copyright (c) 1997-2006 by The Mico Team
*
* This file was automatically generated. DO NOT EDIT!
*/
#include <ccmtools.h>
using namespace std;
//--------------------------------------------------------
// Implementation of stubs
//--------------------------------------------------------
#ifdef HAVE_EXPLICIT_STRUCT_OPS
ccmtools::corba::Components::InvalidName::InvalidName()
[...3685 lines suppressed...]
return true;
}
#endif
return false;
}
void
POA_ccmtools::corba::Components::HomeFinder::invoke (CORBA::StaticServerRequest_ptr __req)
{
if (dispatch (__req)) {
return;
}
CORBA::Exception * ex =
new CORBA::BAD_OPERATION (0, CORBA::COMPLETED_NO);
__req->set_exception (ex);
__req->write_results();
}
Index: Makefile.mico
===================================================================
RCS file: /cvsroot/ccmtools/cpp-environment/ccm/remote/RemoteComponents/Makefile.mico,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Makefile.mico 5 Jan 2007 14:09:32 -0000 1.3
--- Makefile.mico 23 Jan 2007 10:55:09 -0000 1.4
***************
*** 1,2 ****
all:
! idl ${CCMTOOLS_HOME}/idl/ccmtools/corba/Components/ccmtools.idl
\ No newline at end of file
--- 1,7 ----
all:
! if test "`uname`" = "Interix"; then \
! idl `unixpath2win ${CCMTOOLS_HOME}/idl/ccmtools/corba/Components/ccmtools.idl`; \
! else \
! idl ${CCMTOOLS_HOME}/idl/ccmtools/corba/Components/ccmtools.idl; \
! fi
!
\ No newline at end of file
|