Changeset 1188:1fffdc7d6c61
- Timestamp:
- 03/22/09 21:24:36 (3 years ago)
- Branch:
- default
- Location:
- trunk
- Files:
-
- 1 added
- 24 edited
- 1 moved
-
include/libdodo/cgiFastExchange.h (modified) (3 diffs)
-
include/libdodo/dataBaseMysql.h (modified) (1 diff)
-
include/libdodo/dataBasePostgresql.h (modified) (1 diff)
-
include/libdodo/dataBaseSqlite.h (modified) (1 diff)
-
include/libdodo/dataFormatXmlNode.h (modified) (2 diffs)
-
include/libdodo/dataFormatXmlProcessor.h (modified) (11 diffs)
-
include/libdodo/dataMemoryShared.h (modified) (2 diffs)
-
include/libdodo/graphicsImage.h (modified) (1 diff)
-
include/libdodo/ioSsl.h (modified) (1 diff)
-
include/libdodo/pcSyncProcessDataSingle.h (modified) (2 diffs)
-
include/libdodo/pcSyncProcessSection.h (modified) (2 diffs)
-
src/cgiFastExchange.cc (modified) (3 diffs)
-
src/cgiFastRequest.inline (moved) (moved from trunk/src/cgiFastExchange.inline) (4 diffs)
-
src/cgiFastServer.cc (modified) (3 diffs)
-
src/dataBaseMysql.cc (modified) (1 diff)
-
src/dataBasePostgresql.cc (modified) (1 diff)
-
src/dataBaseSqlite.cc (modified) (1 diff)
-
src/dataFormatXmlProcessor.cc (modified) (24 diffs)
-
src/dataMemoryShared.cc (modified) (3 diffs)
-
src/graphicsImage.inline (modified) (1 diff)
-
src/ioSsl.inline (modified) (2 diffs)
-
src/pcSyncProcessDataSingle.cc (modified) (4 diffs)
-
src/pcSyncProcessSection.cc (modified) (3 diffs)
-
src/pcSyncProcessSemaphore.inline (added)
-
src/rpcXmlClient.cc (modified) (1 diff)
-
src/rpcXmlServer.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/libdodo/cgiFastExchange.h
r1185 r1188 43 43 namespace fast 44 44 { 45 /** 46 * @struct __request 47 * @brief defines fast CGI request interface 48 */ 49 struct __request; 45 struct __requestHandle; 50 46 51 47 /** … … 70 66 * @param protection defines type of IO protection[see channelProtectionTypeEnum] 71 67 */ 72 exchange(const __request &req,68 exchange(const __requestHandle &req, 73 69 short protection = io::CHANNEL_PROTECTION_PROCESS); 74 70 … … 130 126 private: 131 127 132 __request *request; ///< fast CGI descriptor128 __requestHandle *request; ///< fast CGI descriptor 133 129 }; 134 130 }; -
trunk/include/libdodo/dataBaseMysql.h
r1177 r1188 43 43 namespace base 44 44 { 45 /**46 * @struct __mysqlHandle47 * @brief defines internal handlers for MySQL DBMS interaction48 */49 45 struct __mysqlHandle; 50 46 -
trunk/include/libdodo/dataBasePostgresql.h
r1177 r1188 43 43 namespace base 44 44 { 45 /**46 * @struct __postgresqlHandle47 * @brief defines internal handlers for MySQL DBMS interaction48 */49 45 struct __postgresqlHandle; 50 46 -
trunk/include/libdodo/dataBaseSqlite.h
r1179 r1188 43 43 namespace base 44 44 { 45 /**46 * @struct __mysqlHandle47 * @brief defines internal handlers for MySQL DBMS interaction48 */49 45 struct __sqliteHandle; 50 46 -
trunk/include/libdodo/dataFormatXmlNode.h
r1175 r1188 56 56 57 57 /** 58 * @struct __node Namespace58 * @struct __nodeHandleNamespace 59 59 * @brief defines node namespace 60 60 */ 61 struct __node Namespace61 struct __nodeHandleNamespace 62 62 { 63 63 dodoString prefix; ///< prefix for the namespace … … 145 145 dodoString name; ///< name of the node [[tag]] 146 146 147 __node Namespace ns; ///< namespace of the node148 __node Namespace nsDef; ///< namespace definition of the node147 __nodeHandleNamespace ns; ///< namespace of the node 148 __nodeHandleNamespace nsDef; ///< namespace definition of the node 149 149 150 150 protected: -
trunk/include/libdodo/dataFormatXmlProcessor.h
r1179 r1188 45 45 class node; 46 46 47 struct __nodeHandle; 48 49 struct __docHandle; 50 47 51 /** 48 * @struct __node 49 * @brief defines XML node properties 50 */ 51 struct __node; 52 53 /** 54 * @struct __document 55 * @brief defines XML document properties 56 */ 57 struct __doc; 58 59 /** 60 * @struct __attribute 61 * @brief defines XML attribute properties 62 */ 63 struct __attr; 64 65 /** 66 * @struct __nodeDef 52 * @struct __nodeHandleDef 67 53 * @brief defines processor tree definition 68 54 */ 69 struct __node Def55 struct __nodeHandleDef 70 56 { 71 57 /** 72 58 * constructor 73 59 */ 74 __node Def();60 __nodeHandleDef(); 75 61 76 62 /** … … 78 64 * @param ns defines namespace of the node 79 65 */ 80 __node Def(const dodoString &name,66 __nodeHandleDef(const dodoString &name, 81 67 const dodoString &ns = __dodostring__); 82 68 83 69 dodoString name; ///< name of the node [[tag]]; if empty - for first - gets root, for children - all[but if children do not have in definition own children] 84 70 85 dodoMap<dodoString, __node Def> children; ///< children definitions71 dodoMap<dodoString, __nodeHandleDef> children; ///< children definitions 86 72 bool allChildren; ///< if true - get all children tree[true by default] 87 73 … … 146 132 147 133 /** 148 * parse XML file using __node Def XML definition134 * parse XML file using __nodeHandleDef XML definition 149 135 * @return parsed XML in node structure 150 136 * @param definition defines structure of XML 151 137 * @param file defines path to XML file 152 138 */ 153 virtual node processFile(const __node Def &definition,139 virtual node processFile(const __nodeHandleDef &definition, 154 140 const dodoString &file); 155 141 156 142 /** 157 * parse XML buffer using __node Def XML definition143 * parse XML buffer using __nodeHandleDef XML definition 158 144 * @return parsed XML in node structure 159 145 * @param definition defines structure of XML 160 146 * @param buffer defines XML buffer 161 147 */ 162 virtual node processString(const __node Def &definition,148 virtual node processString(const __nodeHandleDef &definition, 163 149 const dodoString &buffer); 164 150 … … 201 187 * @param xnode defines node definition to clean 202 188 */ 203 static void initNodeDef(__node Def &xnode);189 static void initNodeDef(__nodeHandleDef &xnode); 204 190 205 191 /** … … 227 213 228 214 /** 229 * parse XML using __node Def XML definition230 * @return parsed XML in node structure 231 * @param definition defines structure of XML 232 */ 233 virtual node parse(const __node Def &definition);215 * parse XML using __nodeHandleDef XML definition 216 * @return parsed XML in node structure 217 * @param definition defines structure of XML 218 */ 219 virtual node parse(const __nodeHandleDef &definition); 234 220 235 221 #ifdef LIBXML2_EXT … … 238 224 * @param xnode defines XML tree node 239 225 */ 240 bool isCDATA(const __node &xnode);226 bool isCDATA(const __nodeHandle &xnode); 241 227 242 228 /** … … 245 231 * @param xnode defines XML tree node 246 232 */ 247 virtual dodoArray<node> parse(__node xnode);248 249 /** 250 * parses XML using __node Def XML definition233 virtual dodoArray<node> parse(__nodeHandle xnode); 234 235 /** 236 * parses XML using __nodeHandleDef XML definition 251 237 * @return parsed XML nodes in node structures 252 238 * @param definition defines structure of XML 253 239 * @param chNode defines XML tree node 254 240 */ 255 virtual dodoArray<node> parse(const __node Def &definition,256 const __node &xnode);241 virtual dodoArray<node> parse(const __nodeHandleDef &definition, 242 const __nodeHandle &xnode); 257 243 258 244 /** … … 261 247 * @param attributes defines buffer for attributes 262 248 */ 263 virtual void getAttributes(const __node &xnode,249 virtual void getAttributes(const __nodeHandle &xnode, 264 250 dodoStringMap &attributes); 265 251 … … 270 256 * @param attributes defines buffer for attributes 271 257 */ 272 virtual void getAttributes(const __node Def &definition,273 const __node &xnode,258 virtual void getAttributes(const __nodeHandleDef &definition, 259 const __nodeHandle &xnode, 274 260 dodoStringMap &attributes); 275 261 … … 279 265 * @param sample defines buffer for node 280 266 */ 281 virtual void getNodeInfo(const __node &xnode,267 virtual void getNodeInfo(const __nodeHandle &xnode, 282 268 node &sample); 283 269 #endif … … 300 286 * @param node defines node content 301 287 */ 302 __node findNode(const __nodeDef &definition,303 const __node &node);304 305 __doc *document; ///< XML Document288 __nodeHandle findNode(const __nodeHandleDef &definition, 289 const __nodeHandle &node); 290 291 __docHandle *document; ///< XML Document 306 292 #endif 307 293 -
trunk/include/libdodo/dataMemoryShared.h
r1175 r1188 39 39 namespace memory 40 40 { 41 /** 42 * @struct __key 43 * @brief defines shared memory key 44 */ 45 struct __key; 41 struct __keyHandle; 46 42 47 43 /** … … 135 131 #endif 136 132 137 __key *key; ///< key for the shared data133 __keyHandle *key; ///< key for the shared data 138 134 139 135 bool autogenerated; ///< true if key was autogenerated -
trunk/include/libdodo/graphicsImage.h
r1181 r1188 42 42 namespace graphics 43 43 { 44 /**45 * @struct __imageHandle46 * @brief defines internal handlers for image processing library47 */48 44 struct __imageHandle; 49 45 -
trunk/include/libdodo/ioSsl.h
r1185 r1188 42 42 namespace ssl 43 43 { 44 /**45 * @struct __sslHandle46 * @brief defines internal handlers for SSL47 */48 44 struct __sslHandle; 49 45 50 /**51 * @struct __sslContext52 * @brief defines internal context for SSL53 */54 46 struct __sslContext; 55 47 -
trunk/include/libdodo/pcSyncProcessDataSingle.h
r1187 r1188 43 43 namespace process 44 44 { 45 struct __semaphoreHandle; 46 45 47 namespace data 46 48 { 47 /**48 * @struct __semaphore49 * @brief defines system semaphore50 */51 struct __semaphore;52 53 49 /** 54 50 * @class single … … 137 133 void *data; ///< shared data 138 134 139 __semaphore *semaphore;135 __semaphoreHandle *semaphore; 140 136 141 137 bool autogenerated; ///< true if key was autogenerated -
trunk/include/libdodo/pcSyncProcessSection.h
r1187 r1188 43 43 namespace process 44 44 { 45 namespace data 46 { 47 struct __semaphore; 48 }; 45 struct __semaphoreHandle; 49 46 50 47 /** … … 117 114 protected: 118 115 119 data::__semaphore *semaphore;116 __semaphoreHandle *semaphore; 120 117 121 118 bool autogenerated; ///< true if key was autogenerated -
trunk/src/cgiFastExchange.cc
r1177 r1188 33 33 #include <fcgiapp.h> 34 34 35 #include "cgiFast Exchange.inline"35 #include "cgiFastRequest.inline" 36 36 37 37 #include <libdodo/cgiFastExchange.h> … … 45 45 exchange::exchange(exchange &cf) : dodo::cgi::exchange(cf.protection), 46 46 channel(cf.protection), 47 request(new __request )47 request(new __requestHandle) 48 48 { 49 49 } … … 51 51 //------------------------------------------------------------------- 52 52 53 exchange::exchange(const __request &req,53 exchange::exchange(const __requestHandle &req, 54 54 short protection) : dodo::cgi::exchange(protection), 55 55 channel(protection) -
trunk/src/cgiFastRequest.inline
r1177 r1188 1 1 /*************************************************************************** 2 * cgiFast Exchange.inline2 * cgiFastRequest.inline 3 3 * 4 4 * Wed Feb 25 06:51:19 2009 … … 28 28 */ 29 29 30 #ifndef _CGIFASTEXCHANGE_INLINE_31 #define _CGIFASTEXCHANGE_INLINE_ 132 33 30 #include <libdodo/directives.h> 34 31 … … 42 39 namespace fast 43 40 { 44 struct __request 41 /** 42 * @struct __requestHandle 43 * @brief defines fast CGI request interface 44 */ 45 struct __requestHandle 45 46 { 46 47 FCGX_Request *request; ///< fast-CGI request handler … … 50 51 }; 51 52 #endif 52 53 #endif -
trunk/src/cgiFastServer.cc
r1177 r1188 33 33 #include <fcgiapp.h> 34 34 35 #include "cgiFast Exchange.inline"35 #include "cgiFastRequest.inline" 36 36 37 37 #include <libdodo/cgiFastServer.h> … … 92 92 { 93 93 FCGX_Request req; 94 __request request = {&req};94 __requestHandle request = {&req}; 95 95 FCGX_InitRequest(request.request, 0, 0); 96 96 … … 168 168 169 169 FCGX_Request req; 170 __request request = {&req};170 __requestHandle request = {&req}; 171 171 FCGX_InitRequest(request.request, 0, 0); 172 172 -
trunk/src/dataBaseMysql.cc
r1177 r1188 43 43 namespace base 44 44 { 45 /** 46 * @struct __mysqlHandle 47 * @brief defines internal handlers for MySQL DBMS interaction 48 */ 45 49 struct __mysqlHandle 46 50 { -
trunk/src/dataBasePostgresql.cc
r1177 r1188 46 46 namespace base 47 47 { 48 /** 49 * @struct __postgresqlHandle 50 * @brief defines internal handlers for MySQL DBMS interaction 51 */ 48 52 struct __postgresqlHandle 49 53 { 50 51 54 PGconn *handle; ///< DB handle 52 55 PGresult *result; ///< handlde to result -
trunk/src/dataBaseSqlite.cc
r1177 r1188 44 44 namespace base 45 45 { 46 /** 47 * @struct __mysqlHandle 48 * @brief defines internal handlers for MySQL DBMS interaction 49 */ 46 50 struct __sqliteHandle 47 51 { -
trunk/src/dataFormatXmlProcessor.cc
r1179 r1188 48 48 namespace xml 49 49 { 50 struct __node 50 /** 51 * @struct __nodeHandle 52 * @brief defines XML node properties 53 */ 54 struct __nodeHandle 51 55 { 52 56 /** 53 57 * constructor 54 58 */ 55 __node ();59 __nodeHandle(); 56 60 57 61 /** 58 62 * constructor 59 63 */ 60 __node (xmlNodePtr node);64 __nodeHandle(xmlNodePtr node); 61 65 62 66 xmlNodePtr node; ///< represents internal libxml2 node data 63 67 }; 64 68 65 struct __doc 69 /** 70 * @struct __docHandleument 71 * @brief defines XML document properties 72 */ 73 struct __docHandle 66 74 { 67 75 xmlDocPtr document; ///< represents internal libxml2 document data … … 76 84 77 85 #ifdef LIBXML2_EXT 78 __node ::__node(xmlNodePtr node) : node(node)79 { 80 } 81 82 //------------------------------------------------------------------- 83 84 __node ::__node()86 __nodeHandle::__nodeHandle(xmlNodePtr node) : node(node) 87 { 88 } 89 90 //------------------------------------------------------------------- 91 92 __nodeHandle::__nodeHandle() 85 93 { 86 94 } … … 107 115 //------------------------------------------------------------------- 108 116 109 __node Def::__nodeDef() : allChildren(true),117 __nodeHandleDef::__nodeHandleDef() : allChildren(true), 110 118 allAttributes(true) 111 119 { … … 114 122 //------------------------------------------------------------------- 115 123 116 __node Def::__nodeDef(const dodoString &name,124 __nodeHandleDef::__nodeHandleDef(const dodoString &name, 117 125 const dodoString &ns) : allChildren(true), 118 126 allAttributes(true), … … 161 169 #ifdef LIBXML2_EXT 162 170 , 163 document(new __doc )171 document(new __docHandle) 164 172 #endif 165 173 { … … 187 195 #ifdef LIBXML2_EXT 188 196 bool 189 processor::isCDATA(const __node &a_xnode)197 processor::isCDATA(const __nodeHandle &a_xnode) 190 198 { 191 199 xmlNodePtr xnode = a_xnode.node->children; … … 207 215 208 216 node 209 processor::processFile(const __node Def &definition,217 processor::processFile(const __nodeHandleDef &definition, 210 218 const dodoString &file) 211 219 { … … 235 243 236 244 node 237 processor::processString(const __node Def &definition,245 processor::processString(const __nodeHandleDef &definition, 238 246 const dodoString &buffer) 239 247 { … … 263 271 264 272 node 265 processor::parse(const __node Def &definition)266 { 267 #ifdef LIBXML2_EXT 268 __node xnode = xmlDocGetRootElement(document->document);273 processor::parse(const __nodeHandleDef &definition) 274 { 275 #ifdef LIBXML2_EXT 276 __nodeHandle xnode = xmlDocGetRootElement(document->document); 269 277 if (xnode.node == NULL) 270 278 { … … 326 334 if (xnode.node->children != NULL) 327 335 { 328 children = parse(__node (xnode.node->children));336 children = parse(__nodeHandle(xnode.node->children)); 329 337 i = children.begin(); 330 338 j = children.end(); … … 346 354 if (definition.children.size() > 0) 347 355 { 348 dodoMap<dodoString, __node Def>::const_iterator i(definition.children.begin()), j(definition.children.end());356 dodoMap<dodoString, __nodeHandleDef>::const_iterator i(definition.children.begin()), j(definition.children.end()); 349 357 for (; i != j; ++i) 350 358 { … … 364 372 #ifdef LIBXML2_EXT 365 373 dodoArray<node> 366 processor::parse(const __node Def &definition,367 const __node &a_xnode)374 processor::parse(const __nodeHandleDef &definition, 375 const __nodeHandle &a_xnode) 368 376 { 369 377 xmlNodePtr xnode = a_xnode.node, subNode; … … 460 468 if (definition.children.size() > 0) 461 469 { 462 dodoMap<dodoString, __node Def>::const_iterator i(definition.children.begin()), j(definition.children.end());470 dodoMap<dodoString, __nodeHandleDef>::const_iterator i(definition.children.begin()), j(definition.children.end()); 463 471 for (; i != j; ++i) 464 472 { … … 481 489 #ifdef LIBXML2_EXT 482 490 void 483 processor::getAttributes(const __node Def &definition,484 const __node &xnode,491 processor::getAttributes(const __nodeHandleDef &definition, 492 const __nodeHandle &xnode, 485 493 dodoStringMap &attributes) 486 494 { … … 547 555 548 556 void 549 processor::getAttributes(const __node &xnode,557 processor::getAttributes(const __nodeHandle &xnode, 550 558 dodoStringMap &attributes) 551 559 { … … 568 576 569 577 void 570 processor::getNodeInfo(const __node &xnode,578 processor::getNodeInfo(const __nodeHandle &xnode, 571 579 node &resNode) 572 580 { … … 669 677 #ifdef LIBXML2_EXT 670 678 dodoArray<node> 671 processor::parse(__node xnode)679 processor::parse(__nodeHandle xnode) 672 680 { 673 681 dodoArray<node> sample; … … 695 703 if (xnode.node->children != NULL) 696 704 { 697 children = parse(__node (xnode.node->children));705 children = parse(__nodeHandle(xnode.node->children)); 698 706 i = children.begin(); 699 707 j = children.end(); … … 768 776 } 769 777 770 return *(parse(__node (xnode)).begin());778 return *(parse(__nodeHandle(xnode)).begin()); 771 779 #else 772 780 return node(); … … 812 820 } 813 821 814 return *(parse(__node (xnode)).begin());822 return *(parse(__nodeHandle(xnode)).begin()); 815 823 #else 816 824 return node(); … … 821 829 822 830 void 823 processor::initNodeDef(__node Def &xnode)831 processor::initNodeDef(__nodeHandleDef &xnode) 824 832 { 825 833 xnode.attributes.clear(); … … 832 840 833 841 #ifdef LIBXML2_EXT 834 __node 835 processor::findNode(const __node Def &definition,836 const __node &a_xnode)842 __nodeHandle 843 processor::findNode(const __nodeHandleDef &definition, 844 const __nodeHandle &a_xnode) 837 845 { 838 846 xmlNodePtr one, xnode = a_xnode.node; … … 872 880 } 873 881 874 one = findNode(definition, __node (xnode->children)).node;882 one = findNode(definition, __nodeHandle(xnode->children)).node; 875 883 876 884 if (one != NULL) … … 882 890 } 883 891 884 return __node (NULL);892 return __nodeHandle(NULL); 885 893 } 886 894 #endif -
trunk/src/dataMemoryShared.cc
r1177 r1188 52 52 namespace memory 53 53 { 54 struct __key 54 /** 55 * @struct __keyHandle 56 * @brief defines shared memory key 57 */ 58 struct __keyHandle 55 59 { 56 60 #ifdef XSI_IPC … … 74 78 shared::shared() : mshared(NULL), 75 79 autogenerated(false), 76 key(new __key ),80 key(new __keyHandle), 77 81 #ifndef XSI_IPC 78 82 size(0), … … 86 90 shared::shared(int a_key) : mshared(NULL), 87 91 autogenerated(false), 88 key(new __key ),92 key(new __keyHandle), 89 93 #ifndef XSI_IPC 90 94 size(0), -
trunk/src/graphicsImage.inline
r1185 r1188 41 41 namespace graphics 42 42 { 43 /** 44 * @struct __imageHandle 45 * @brief defines internal handlers for image processing library 46 */ 43 47 struct __imageHandle 44 48 { -
trunk/src/ioSsl.inline
r1185 r1188 39 39 namespace ssl 40 40 { 41 /** 42 * @struct __sslHandle 43 * @brief defines internal handlers for SSL 44 */ 41 45 struct __sslHandle 42 46 { … … 44 48 }; 45 49 50 /** 51 * @struct __sslContext 52 * @brief defines internal context for SSL 53 */ 46 54 struct __sslContext 47 55 { -
trunk/src/pcSyncProcessDataSingle.cc
r1187 r1188 40 40 #include <time.h> 41 41 42 #include "pcSyncProcess DataSingle.inline"42 #include "pcSyncProcessSemaphore.inline" 43 43 44 44 #include <libdodo/pcSyncProcessDataSingle.h> … … 47 47 #include <libdodo/types.h> 48 48 #include <libdodo/toolsMisc.h> 49 #include <libdodo/toolsCode.h> ;49 #include <libdodo/toolsCode.h> 50 50 51 51 using namespace dodo::pc::sync::process::data; 52 53 __semaphore::__semaphore() :54 #ifdef XSI_IPC55 keeper(-1)56 #else57 keeper(NULL)58 #endif59 {60 }61 62 //-------------------------------------------------------------------63 52 64 53 single::single(single &sts) … … 71 60 autogenerated(false), 72 61 acquired(false), 73 semaphore(new __semaphore)62 semaphore(new pc::sync::process::__semaphoreHandle) 74 63 { 75 64 #ifdef XSI_IPC … … 133 122 autogenerated(false), 134 123 acquired(false), 135 semaphore(new __semaphore)124 semaphore(new pc::sync::process::__semaphoreHandle) 136 125 { 137 126 } -
trunk/src/pcSyncProcessSection.cc
r1187 r1188 38 38 #endif 39 39 40 #include "pcSyncProcess DataSingle.inline"40 #include "pcSyncProcessSemaphore.inline" 41 41 42 42 #include <libdodo/pcSyncProcessSection.h> … … 57 57 section::section(int a_key) : autogenerated(false), 58 58 acquired(false), 59 semaphore(new pc::sync::process::data::__semaphore)59 semaphore(new __semaphoreHandle) 60 60 { 61 61 #ifdef XSI_IPC … … 119 119 section::section() : autogenerated(false), 120 120 acquired(false), 121 semaphore(new pc::sync::process::data::__semaphore)121 semaphore(new __semaphoreHandle) 122 122 { 123 123 } -
trunk/src/rpcXmlClient.cc
r1162 r1188 77 77 rpEncoding = xmlValue.getBufferInfo(data).encoding; 78 78 79 dodo::data::format::xml::__node Def xmlMethodResponse;79 dodo::data::format::xml::__nodeHandleDef xmlMethodResponse; 80 80 xmlMethodResponse.name = "methodResponse"; 81 81 xmlMethodResponse.allChildren = true; -
trunk/src/rpcXmlServer.cc
r1162 r1188 65 65 rqEncoding = xmlValue.getBufferInfo(data).encoding; 66 66 67 dodo::data::format::xml::__node Def xmlMethodCall;67 dodo::data::format::xml::__nodeHandleDef xmlMethodCall; 68 68 xmlMethodCall.name = "methodCall"; 69 69 xmlMethodCall.allChildren = true;
Note: See TracChangeset
for help on using the changeset viewer.
