|
virtual std::vector< std::string > | GetClassHierarchy () const override |
|
virtual const char * | GetClassName () const |
|
virtual const char * | GetDefaultFilename ()=0 |
|
virtual const char * | GetFileDialogPattern ()=0 |
|
virtual const char * | GetDefaultExtension ()=0 |
|
virtual bool | CanWriteBaseDataType (BaseData::Pointer data)=0 |
|
virtual void | DoWrite (BaseData::Pointer data)=0 |
|
virtual const char * | GetFileName () const =0 |
| Get the specified the file to write. More...
|
|
virtual void | SetFileName (const char *aFileName)=0 |
| Specify the file to write. More...
|
|
virtual const char * | GetFilePrefix () const =0 |
| Get the specified file prefix for the file(s) to write. More...
|
|
virtual void | SetFilePrefix (const char *aFilePrefix)=0 |
| Specify file prefix for the file(s) to write. More...
|
|
virtual const char * | GetFilePattern () const =0 |
| Get the specified file pattern for the file(s) to write. The sprintf format used to build filename from FilePrefix and number. More...
|
|
virtual void | SetFilePattern (const char *aFilePattern)=0 |
| Specified file pattern for the file(s) to write. The sprintf format used to build filename from FilePrefix and number. More...
|
|
virtual std::string | GetFileExtension () |
| Return the extension to be added to the filename. More...
|
|
bool | IsExtensionValid (std::string extension) |
| Checks if given extension is valid for file writer. More...
|
|
virtual std::vector< std::string > | GetPossibleFileExtensions ()=0 |
| Return the possible file extensions for the data type associated with the writer. More...
|
|
virtual std::string | GetPossibleFileExtensionsAsString () |
| possible file extensions for the data type associated with the writer as string More...
|
|
virtual bool | CanWriteDataType (DataNode *) |
| Check if the Writer can write this type of data of the DataTreenode. More...
|
|
virtual std::string | GetWritenMIMEType () |
| Return the MimeType of the saved File. More...
|
|
virtual std::string | GetSupportedBaseData () const =0 |
|
void | SetInput (BaseData *data) |
|
virtual void | Write ()=0 |
|
virtual bool | CanWriteToMemory () |
| Specifies, whether the file writer also can write a file to a memory buffer. More...
|
|
virtual void | SetWriteToMemory (bool write) |
| Set/Get functions to advise the file writer to use tis internal memory array as file writing destination. More...
|
|
virtual bool | GetWriteToMemory () |
|
virtual const char * | GetMemoryPointer () |
| To be used along with a call of SetWriteToMemory(true). This returns the memory buffer where the file was written. More...
|
|
virtual unsigned int | GetMemorySize () |
| To be used along with a call of SetWriteToMemory(true). This returns the size of the memory buffer where the file was written. More...
|
|
virtual void | ReleaseMemory () |
| CAUTION: It's up to the user to call this function to release the memory buffer after use in case the file writer has written to its memory array. More...
|
|