|
open_iA 2024.9
|
#include "iAAmiraMeshIO.h"#include <iALog.h>#include <vtkImageData.h>#include <QFile>#include <QString>#include <QStringList>#include <QTextStream>#include <cstdio>#include <cstring>#include <cassert>#include <stdexcept>Typedefs | |
| typedef unsigned char | LabelType |
| typedef char | RawDataType |
Functions | |
| int | decodeRLE (RawDataType *in, size_t inLength, RawDataType *out, size_t maxOutLength) |
| const char * | FindAndJump (const char *buffer, const char *SearchString) |
| Find a string in the given buffer and return a pointer to the contents directly behind the SearchString. | |
Variables | |
| const int | VTKLabelType = VTK_UNSIGNED_CHAR |
| typedef unsigned char LabelType |
| typedef char RawDataType |
| int decodeRLE | ( | RawDataType * | in, |
| size_t | inLength, | ||
| RawDataType * | out, | ||
| size_t | maxOutLength ) |
| const char * FindAndJump | ( | const char * | buffer, |
| const char * | SearchString ) |
Find a string in the given buffer and return a pointer to the contents directly behind the SearchString.
If not found, return the buffer. A subsequent sscanf() will fail then, but at least we return a decent pointer.
| const int VTKLabelType = VTK_UNSIGNED_CHAR |