![]() |
TiXI 3.3.2
|
| enum AddLinkMode |
Mode how to add external data nodes to the document.
Has a typedef to AddLinkMode.
| Enumerator | |
|---|---|
| ADDLINK_CREATE | Just create the link. The files won't be load into the document. |
| ADDLINK_CREATE_AND_OPEN | Creates the link and loads the specified file into the document. |
| enum MessageType |
| enum OpenMode |
Open mode of a xml file This enum indicates how a xml file is opend. If OpenMode is OPENMODE_PLAIN, the xml file is open "normal" and just the given file is opend. If OpenMode is OPENMODE_RECURSIVE, then all external files specified in a <externaldata> node are opend and replaced in the xml tree.
Has a typedef to OpenMode.
| Enumerator | |
|---|---|
| OPENMODE_PLAIN | Open just the xml file |
| OPENMODE_RECURSIVE | Open with external files |
| enum ReturnCode |
ReturnCode return code of TIXI-routines. Has a typedef to ReturnCode.
| enum StorageMode |
Strorage mode of arrays This enum indicates how a matrix is stored in an array on input or should be retrieved into an array on output. If ROW_WISE is specified the order will be (1,1), (1,2), ..., (2,1), (2,2), (2,3)... If COLUMN_WISE is specified the order will be (1,1), (2,1), (3,1), .., (1,2),(2,2),(3,2) ...
Has a typedef to StorageMode.
| Enumerator | |
|---|---|
| ROW_WISE | row wise order |
| COLUMN_WISE | column wise |