API Documentation
ExportError.h
1 // ExportError.h
3 //
5 
6 namespace nkExport
7 {
11  struct ExportError final
12  {
15 
16  unsigned int _index = 0u ;
17 
18  bool _activated = false ;
19  } ;
20 }
nkExport::ExportError::_errorInfo
nkMemory::String _errorInfo
Information about the error. For instance, a reason for the parsing error.
Definition: ExportError.h:14
nkExport
Encompasses all API of component NilkinsExport.
Definition: Base64Encoder.h:7
nkExport::ExportError::_activated
bool _activated
Whether there is an error described (true) or not (false).
Definition: ExportError.h:18
nkExport::ExportError
Holds information about a failure when trying to import an object using an Exporter.
Definition: ExportError.h:12
nkMemory::String
Class holding information about a string, with ownership over the data.
Definition: String.h:22
nkExport::ExportError::_index
unsigned int _index
The index in sources, at which the error has been spotted.
Definition: ExportError.h:16
nkExport::ExportError::_errorDesc
nkMemory::String _errorDesc
Description of the error. For instance, "parsing error".
Definition: ExportError.h:13