diff options
Diffstat (limited to 'src/generator.h')
-rw-r--r-- | src/generator.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/generator.h b/src/generator.h index bc0b09b..763fd28 100644 --- a/src/generator.h +++ b/src/generator.h @@ -24,20 +24,20 @@ #ifndef GENERATOR_H #define GENERATOR_H -/** Simplifies the task of creating a StarDict dictionary. */ +/// Simplifies the task of creating a StarDict dictionary. typedef struct generator Generator; struct generator { - StardictInfo * info; //!< Dictionary information, fill it in + StardictInfo * info; ///< Dictionary information, fill it in - goffset entry_mark; //!< Marks the entry's start offset + goffset entry_mark; ///< Marks the entry's start offset - GFileOutputStream * dict_stream; //!< Dictionary stream - GDataOutputStream * dict_data; //!< Dictionary data stream wrapper + GFileOutputStream * dict_stream; ///< Dictionary stream + GDataOutputStream * dict_data; ///< Dictionary data stream wrapper - GFileOutputStream * idx_stream; //!< Index file stream - GDataOutputStream * idx_data; //!< Index file data stream wrapper + GFileOutputStream * idx_stream; ///< Index file stream + GDataOutputStream * idx_data; ///< Index file data stream wrapper }; Generator *generator_new (const gchar *base, GError **error); @@ -53,4 +53,4 @@ gboolean generator_write_string (Generator *self, gboolean generator_finish_entry (Generator *self, const gchar *word, GError **error); -#endif /* ! GENERATOR_H */ +#endif // ! GENERATOR_H |