![]() |
TiXI 3.3.2
|
| enum AddLinkMode |
#include <C:/data/code/tixi/src/tixi.h>
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 |
#include <C:/data/code/tixi/src/tixi.h>
Type of a TiXI message
This is used, if the user wants to override the default message system in TiXI.
| Enumerator | |
|---|---|
| MESSAGETYPE_ERROR | The message is an error |
| MESSAGETYPE_WARNING | The message is a warning |
| MESSAGETYPE_STATUS | A status message |
| enum OpenMode |
#include <C:/data/code/tixi/src/tixi.h>
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 |
#include <C:/data/code/tixi/src/tixi.h>
ReturnCode return code of TIXI-routines. Has a typedef to ReturnCode.
| enum StorageMode |
#include <C:/data/code/tixi/src/tixi.h>
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 |