#include "gnn_output.h"Include dependency graph for gnn_filewriter.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| gnn_output * | gnn_filewriter_new (FILE *fp) |
| Builds a new filewriter device. | |
| gnn_output * | gnn_filewriter_with_file_new (const char *filename) |
| Builds a new filewriter device with a given filename. | |
| int | gnn_filewriter_set_format (gnn_output *set, const char *fmt) |
| Sets a new print format. | |
| const char * | gnn_filewriter_get_format (gnn_output *set) |
| Gets the print format. | |
| int | gnn_filewriter_set_prefix (gnn_output *set, const char *prefix) |
| Sets a new printing prefix. | |
| const char * | gnn_filewriter_get_prefix (gnn_output *set) |
| Gets the prefix format string. | |
| int | gnn_filewriter_set_postfix (gnn_output *set, const char *postfix) |
| Sets a new printing postfix. | |
| const char * | gnn_filewriter_get_postfix (gnn_output *set) |
| Gets the postfix format string. | |
| int | gnn_filewriter_owns_file (gnn_output *set) |
| Check if it owns the file. | |
|
|
This function returns a pointer to the currently used vector elements print format.
Definition at line 339 of file gnn_filewriter.c. |
|
|
This function returns a pointer to the currently used postfix string.
Definition at line 443 of file gnn_filewriter.c. |
|
|
This function returns a pointer to the currently used prefix string.
Definition at line 391 of file gnn_filewriter.c. |
|
|
This function creates a new gnn_filewriter : File Output Device. device with the given opened file pointer. When destroyed, the stream won't be closed.
Definition at line 205 of file gnn_filewriter.c. |
|
|
This function returns 1 if the gnn_filewriter : File Output Device. owns the file.
Definition at line 465 of file gnn_filewriter.c. |
|
||||||||||||
|
This function sets a new print format for the vector elements of the samples. The default is
Definition at line 308 of file gnn_filewriter.c. |
|
||||||||||||
|
This function sets a new printing postfix, which will be postpended to every printed output vector. This string can contain at most one integer format specifier, like
Definition at line 416 of file gnn_filewriter.c. |
|
||||||||||||
|
This function sets a new printing prefix, which will be prepended to every printed output vector. This string can contain at most one integer format specifier, like
Definition at line 364 of file gnn_filewriter.c. |
|
|
This function creates a new gnn_filewriter : File Output Device. device. It opens the file filename for printing. The gnn_filewriter : File Output Device. is the owner of the file and closes it when destroyed.
Definition at line 262 of file gnn_filewriter.c. |
1.2.18