diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-26 23:26:52 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-26 23:29:45 +0100 |
commit | 10240c716aa7eea6aada39e77a7a3cd290a21663 (patch) | |
tree | 88cf815e4d002d0765ad03f97c64faa1acc317b2 /src/generator.h | |
parent | f9c308765f7aa16d553c72551fd830b7e29c9aec (diff) | |
download | tdv-10240c716aa7eea6aada39e77a7a3cd290a21663.tar.gz tdv-10240c716aa7eea6aada39e77a7a3cd290a21663.tar.xz tdv-10240c716aa7eea6aada39e77a7a3cd290a21663.zip |
Formatting
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 |