peiyongz 2003/10/17 14:09:03
Modified: c/src/xercesc/internal XSerializeEngine.cpp
XSerializeEngine.hpp
Log:
renaming methods
Revision Changes Path
1.7 +8 -5 xml-xerces/c/src/xercesc/internal/XSerializeEngine.cpp
Index: XSerializeEngine.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XSerializeEngine.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- XSerializeEngine.cpp 7 Oct 2003 19:38:31 -0000 1.6
+++ XSerializeEngine.cpp 17 Oct 2003 21:09:03 -0000 1.7
@@ -57,6 +57,9 @@
/*
* $Id$
* $Log$
+ * Revision 1.7 2003/10/17 21:09:03 peiyongz
+ * renaming methods
+ *
* Revision 1.6 2003/10/07 19:38:31 peiyongz
* API for Template_Class Object Serialization/Deserialization
*
@@ -1005,7 +1008,7 @@
* to notifiy the client application code to store the template object.
*
***/
-bool XSerializeEngine::needToWriteTemplateObject(void* const templateObjectToWrite)
+bool XSerializeEngine::needToStoreObject(void* const templateObjectToWrite)
{
ensureStoring(); //don't ensurePointer here !!!
@@ -1031,7 +1034,7 @@
}
-bool XSerializeEngine::needToReadTemplateObject(void** templateObjectToRead)
+bool XSerializeEngine::needToLoadObject(void** templateObjectToRead)
{
ensureLoading();
@@ -1044,7 +1047,7 @@
/***
* what follows fgTemplateObjTag is the actual template object
* We need the client application to create a template object
- * and register it through registerTemplateObject(), and deserialize
+ * and register it through registerObject(), and deserialize
* template object
***/
return true;
@@ -1060,7 +1063,7 @@
}
-void XSerializeEngine::registerTemplateObject(void* const templateObjectToRegister)
+void XSerializeEngine::registerObject(void* const templateObjectToRegister)
{
ensureLoading();
addLoadPool(templateObjectToRegister);
1.7 +8 -5 xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp
Index: XSerializeEngine.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XSerializeEngine.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- XSerializeEngine.hpp 14 Oct 2003 15:18:20 -0000 1.6
+++ XSerializeEngine.hpp 17 Oct 2003 21:09:03 -0000 1.7
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.7 2003/10/17 21:09:03 peiyongz
+ * renaming methods
+ *
* Revision 1.6 2003/10/14 15:18:20 peiyongz
* getMemoryManager()
*
@@ -388,7 +391,7 @@
* false : otherwise
*
***/
- bool needToWriteTemplateObject(void* const
templateObjectToWrite);
+ bool needToStoreObject(void* const templateObjectToWrite);
/***
*
@@ -401,11 +404,11 @@
* false : otherwise
*
***/
- bool needToReadTemplateObject(void**
templateObjectToRead);
+ bool needToLoadObject(void** templateObjectToRead);
/***
*
- * In the case of needToReadTemplateObject() return true, the client
+ * In the case of needToLoadObject() return true, the client
* application needs to instantiate an expected template object, and
* register the address to the engine.
*
@@ -415,7 +418,7 @@
* Return:
*
***/
- void registerTemplateObject(void* const
templateObjectToRegister);
+ void registerObject(void* const templateObjectToRegister);
static const bool toReadBufferLen;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]