[MOAB-dev] r2615 - in MOAB/trunk/tools/iMesh/SIDL: . mserver
kraftche at mcs.anl.gov
kraftche at mcs.anl.gov
Fri Jan 30 15:28:26 CST 2009
Author: kraftche
Date: 2009-01-30 15:28:26 -0600 (Fri, 30 Jan 2009)
New Revision: 2615
Modified:
MOAB/trunk/tools/iMesh/SIDL/Makefile.in
MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.cc
MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.hh
MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_Factory_Impl.cc
MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.cc
MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.hh
Log:
add --suppress-version flag to babel calls
Modified: MOAB/trunk/tools/iMesh/SIDL/Makefile.in
===================================================================
--- MOAB/trunk/tools/iMesh/SIDL/Makefile.in 2009-01-30 21:17:50 UTC (rev 2614)
+++ MOAB/trunk/tools/iMesh/SIDL/Makefile.in 2009-01-30 21:28:26 UTC (rev 2615)
@@ -39,6 +39,7 @@
BABEL_DIR = @BABEL_DIR@
USE_BABEL = @USE_BABEL@
BABEL = $(BABEL_DIR)/bin/babel
+BABELFLAGS = "--suppress-timestamp"
ECHO = @ECHO@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
@@ -215,22 +216,22 @@
done \
fi
@if test "x$(USE_BABEL)" = "xyes"; then \
- $(ECHO) '$(BABEL) -sC++ $(SIDL_FILES_PATH) -o mserver' ; \
- $(BABEL) -sC++ $(SIDL_FILES_PATH) -o mserver && touch $@; \
+ $(ECHO) '$(BABEL) $(BABELFLAGS) -sC++ $(SIDL_FILES_PATH) -o mserver' ; \
+ $(BABEL) $(BABELFLAGS) -sC++ $(SIDL_FILES_PATH) -o mserver && touch $@; \
fi
Cclient/babel.make: $(SIDL_FILES)
test -d Cclient || $(mkdir_p) Cclient || exit 1
@if test "x$(USE_BABEL)" = "xyes"; then \
- $(ECHO) '$(BABEL) -cC $(SIDL_FILES_PATH) -o Cclient' ; \
- $(BABEL) -cC $(SIDL_FILES_PATH) -o Cclient && touch $@; \
+ $(ECHO) '$(BABEL) $(BABELFLAGS) -cC $(SIDL_FILES_PATH) -o Cclient' ; \
+ $(BABEL) $(BABELFLAGS) -cC $(SIDL_FILES_PATH) -o Cclient && touch $@; \
fi
Fclient/babel.make: $(SIDL_FILES)
test -d Fclient || $(mkdir_p) Fclient || exit 1
@if test "x$(USE_BABEL)" = "xyes"; then \
- $(ECHO) '$(BABEL) -cF77 $(SIDL_FILES_PATH) -o Fclient' ; \
- $(BABEL) -cF77 $(SIDL_FILES_PATH) -o Fclient && touch $@; \
+ $(ECHO) '$(BABEL) $(BABELFLAGS) -cF77 $(SIDL_FILES_PATH) -o Fclient' ; \
+ $(BABEL) $(BABELFLAGS) -cF77 $(SIDL_FILES_PATH) -o Fclient && touch $@; \
fi
.SUFFIXES: .cpp .cc .c .lo
Modified: MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.cc
===================================================================
--- MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.cc 2009-01-30 21:17:50 UTC (rev 2614)
+++ MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.cc 2009-01-30 21:28:26 UTC (rev 2615)
@@ -1,17 +1,13 @@
//
// File: iBase_Error_Impl.cc
-// Symbol: iBase.Error-v0.7
+// Symbol: iBase.Error-v0.8
// Symbol Type: class
-// Babel Version: 0.10.12
-// sidl Created: 20070628 20:55:23 CDT
-// Generated: 20070628 20:55:31 CDT
+// Babel Version: 0.10.10
// Description: Server-side implementation for iBase.Error
//
// WARNING: Automatically generated; only changes within splicers preserved
//
-// babel-version = 0.10.12
-// source-line = 84
-// source-url = file:/home/tautges/MOAB/tools/iMesh/SIDL/mserver/../iBase.sidl
+// babel-version = 0.10.10
//
#include "iBase_Error_Impl.hh"
Modified: MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.hh
===================================================================
--- MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.hh 2009-01-30 21:17:50 UTC (rev 2614)
+++ MOAB/trunk/tools/iMesh/SIDL/mserver/iBase_Error_Impl.hh 2009-01-30 21:28:26 UTC (rev 2615)
@@ -1,17 +1,13 @@
//
// File: iBase_Error_Impl.hh
-// Symbol: iBase.Error-v0.7
+// Symbol: iBase.Error-v0.8
// Symbol Type: class
-// Babel Version: 0.10.12
-// sidl Created: 20070628 20:55:23 CDT
-// Generated: 20070628 20:55:31 CDT
+// Babel Version: 0.10.10
// Description: Server-side implementation for iBase.Error
//
// WARNING: Automatically generated; only changes within splicers preserved
//
-// babel-version = 0.10.12
-// source-line = 84
-// source-url = file:/home/tautges/MOAB/tools/iMesh/SIDL/mserver/../iBase.sidl
+// babel-version = 0.10.10
//
#ifndef included_iBase_Error_Impl_hh
@@ -47,7 +43,7 @@
namespace iBase {
/**
- * Symbol "iBase.Error" (version 0.7)
+ * Symbol "iBase.Error" (version 0.8)
*/
class Error_impl
// DO-NOT-DELETE splicer.begin(iBase.Error._inherits)
Modified: MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_Factory_Impl.cc
===================================================================
--- MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_Factory_Impl.cc 2009-01-30 21:17:50 UTC (rev 2614)
+++ MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_Factory_Impl.cc 2009-01-30 21:28:26 UTC (rev 2615)
@@ -1,17 +1,13 @@
//
// File: iMesh_Factory_Impl.cc
-// Symbol: iMesh.Factory-v0.7
+// Symbol: iMesh.Factory-v0.8
// Symbol Type: class
-// Babel Version: 0.10.12
-// sidl Created: 20080414 17:40:04 GMT
-// Generated: 20080414 17:40:09 GMT
+// Babel Version: 0.10.10
// Description: Server-side implementation for iMesh.Factory
//
// WARNING: Automatically generated; only changes within splicers preserved
//
-// babel-version = 0.10.12
-// source-line = 296
-// source-url = file:/home/tautges/MOAB/tools/iMesh/SIDL/iMesh.sidl
+// babel-version = 0.10.10
//
#include "iMesh_Factory_Impl.hh"
Modified: MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.cc
===================================================================
--- MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.cc 2009-01-30 21:17:50 UTC (rev 2614)
+++ MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.cc 2009-01-30 21:28:26 UTC (rev 2615)
@@ -3,15 +3,11 @@
// Symbol: iMesh_SIDL.MeshSidl-v0.2
// Symbol Type: class
// Babel Version: 0.10.10
-// sidl Created: 20090130 09:34:06 CST
-// Generated: 20090130 09:34:08 CST
// Description: Server-side implementation for iMesh_SIDL.MeshSidl
//
// WARNING: Automatically generated; only changes within splicers preserved
//
// babel-version = 0.10.10
-// source-line = 5
-// source-url = file:/home/jason/moab/clean/sidl/tools/iMesh/SIDL/../../../../src/tools/iMesh/SIDL/iMesh_SIDL.sidl
//
#include "iMesh_SIDL_MeshSidl_Impl.hh"
@@ -1575,7 +1571,8 @@
/* in */ ::iBase::EntityType entity_type_requested,
/* inout */ ::sidl::array<void*>& adj_entity_handles,
/* out */ int32_t& adj_entity_handles_size,
- /* inout */ ::sidl::array<int32_t>& offset )
+ /* inout */ ::sidl::array<int32_t>& offset,
+ /* out */ int32_t& offset_size )
throw (
::iBase::Error
){
Modified: MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.hh
===================================================================
--- MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.hh 2009-01-30 21:17:50 UTC (rev 2614)
+++ MOAB/trunk/tools/iMesh/SIDL/mserver/iMesh_SIDL_MeshSidl_Impl.hh 2009-01-30 21:28:26 UTC (rev 2615)
@@ -2,16 +2,12 @@
// File: iMesh_SIDL_MeshSidl_Impl.hh
// Symbol: iMesh_SIDL.MeshSidl-v0.2
// Symbol Type: class
-// Babel Version: 0.10.12
-// sidl Created: 20070927 14:57:59 CDT
-// Generated: 20070927 14:58:06 CDT
+// Babel Version: 0.10.10
// Description: Server-side implementation for iMesh_SIDL.MeshSidl
//
// WARNING: Automatically generated; only changes within splicers preserved
//
-// babel-version = 0.10.12
-// source-line = 5
-// source-url = file:/home/tautges/MOAB/tools/iMesh/SIDL/iMesh_SIDL.sidl
+// babel-version = 0.10.10
//
#ifndef included_iMesh_SIDL_MeshSidl_Impl_hh
@@ -664,7 +660,7 @@
void
addEntToSet (
/* in */ void* entity_handle,
- /* inout */ void*& entity_set
+ /* in */ void* entity_set
)
throw (
::iBase::Error
@@ -676,7 +672,7 @@
void
rmvEntFromSet (
/* in */ void* entity_handle,
- /* inout */ void*& entity_set
+ /* in */ void* entity_set
)
throw (
::iBase::Error
@@ -689,7 +685,7 @@
addEntArrToSet (
/* in */ ::sidl::array<void*> entity_handles,
/* in */ int32_t entity_handles_size,
- /* inout */ void*& entity_set
+ /* in */ void* entity_set
)
throw (
::iBase::Error
@@ -702,7 +698,7 @@
rmvEntArrFromSet (
/* in */ ::sidl::array<void*> entity_handles,
/* in */ int32_t entity_handles_size,
- /* inout */ void*& entity_set
+ /* in */ void* entity_set
)
throw (
::iBase::Error
@@ -714,7 +710,7 @@
void
addEntSet (
/* in */ void* entity_set_to_add,
- /* inout */ void*& entity_set_handle
+ /* in */ void* entity_set_handle
)
throw (
::iBase::Error
@@ -726,7 +722,7 @@
void
rmvEntSet (
/* in */ void* entity_set_to_remove,
- /* inout */ void*& entity_set_handle
+ /* in */ void* entity_set_handle
)
throw (
::iBase::Error
@@ -749,6 +745,20 @@
* user defined non-static method.
*/
void
+ isEntArrContained (
+ /* in */ void* containing_set,
+ /* in */ ::sidl::array<void*> entity_handles,
+ /* in */ int32_t entity_handles_size,
+ /* inout */ ::sidl::array<int32_t>& is_contained,
+ /* out */ int32_t& is_contained_size
+ )
+ throw ()
+ ;
+
+ /**
+ * user defined non-static method.
+ */
+ void
isEntSetContained (
/* in */ void* containing_entity_set,
/* in */ void* contained_entity_set,
@@ -763,8 +773,8 @@
*/
void
addPrntChld (
- /* inout */ void*& parent_entity_set,
- /* inout */ void*& child_entity_set
+ /* in */ void* parent_entity_set,
+ /* in */ void* child_entity_set
)
throw (
::iBase::Error
@@ -775,8 +785,8 @@
*/
void
rmvPrntChld (
- /* inout */ void*& parent_entity_set,
- /* inout */ void*& child_entity_set
+ /* in */ void* parent_entity_set,
+ /* in */ void* child_entity_set
)
throw (
::iBase::Error
@@ -940,6 +950,17 @@
* user defined non-static method.
*/
void
+ setGeometricDim (
+ /* in */ int32_t dim
+ )
+ throw (
+ ::iBase::Error
+ );
+
+ /**
+ * user defined non-static method.
+ */
+ void
getDfltStorage (
/* out */ ::iBase::StorageOrder& dflt_storage
)
@@ -1001,42 +1022,6 @@
* user defined non-static method.
*/
void
- getAllVtxCoords (
- /* in */ void* entity_set,
- /* inout */ ::sidl::array<double>& coords,
- /* out */ int32_t& coords_size,
- /* inout */ ::sidl::array<int32_t>& in_entity_set,
- /* out */ int32_t& in_entity_set_size,
- /* inout */ ::iBase::StorageOrder& storage_order
- )
- throw (
- ::iBase::Error
- );
-
- /**
- * user defined non-static method.
- */
- void
- getVtxCoordIndex (
- /* in */ void* entity_set,
- /* in */ ::iBase::EntityType requested_entity_type,
- /* in */ ::iMesh::EntityTopology requested_entity_topology,
- /* in */ ::iBase::EntityType entity_adjacency_type,
- /* inout */ ::sidl::array<int32_t>& offset,
- /* out */ int32_t& offset_size,
- /* inout */ ::sidl::array<int32_t>& index,
- /* out */ int32_t& index_size,
- /* inout */ ::sidl::array< ::iMesh::EntityTopology>& entity_topologies,
- /* out */ int32_t& entity_topologies_size
- )
- throw (
- ::iBase::Error
- );
-
- /**
- * user defined non-static method.
- */
- void
getEntities (
/* in */ void* entity_set,
/* in */ ::iBase::EntityType entity_type,
@@ -1075,9 +1060,7 @@
/* inout */ ::sidl::array<void*>& adj_entity_handles,
/* out */ int32_t& adj_entity_handles_size,
/* inout */ ::sidl::array<int32_t>& offset,
- /* out */ int32_t& offset_size,
- /* inout */ ::sidl::array<int32_t>& in_entity_set,
- /* out */ int32_t& in_entity_set_size
+ /* out */ int32_t& offset_size
)
throw (
::iBase::Error
@@ -1087,6 +1070,28 @@
* user defined non-static method.
*/
void
+ getAdjEntIndices (
+ /* in */ void* entity_set_handle,
+ /* in */ ::iBase::EntityType entity_type_requestor,
+ /* in */ ::iMesh::EntityTopology entity_topology_requestor,
+ /* in */ ::iBase::EntityType entity_type_requested,
+ /* inout */ ::sidl::array<void*>& entity_handles,
+ /* out */ int32_t& entity_handles_size,
+ /* inout */ ::sidl::array<void*>& adj_entity_handles,
+ /* out */ int32_t& adj_entity_handles_size,
+ /* inout */ ::sidl::array<int32_t>& adj_entity_indices,
+ /* out */ int32_t& adj_entity_indices_size,
+ /* inout */ ::sidl::array<int32_t>& offset,
+ /* out */ int32_t& offset_size
+ )
+ throw (
+ ::iBase::Error
+ );
+
+ /**
+ * user defined non-static method.
+ */
+ void
initEntIter (
/* in */ void* entity_set_handle,
/* in */ ::iBase::EntityType requested_entity_type,
More information about the moab-dev
mailing list