summaryrefslogtreecommitdiff
path: root/fluid/proj/i18n.h
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/proj/i18n.h')
-rw-r--r--fluid/proj/i18n.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/fluid/proj/i18n.h b/fluid/proj/i18n.h
index 65ef72bf6..262a6347c 100644
--- a/fluid/proj/i18n.h
+++ b/fluid/proj/i18n.h
@@ -21,8 +21,6 @@
#include <stdlib.h>
#include <string.h>
-namespace fld {
-
class Project;
/**
@@ -30,22 +28,14 @@ class Project;
*/
typedef int I18n_Type;
-} // namespace fld
-
enum {
FLD_I18N_TYPE_NONE = 0, ///< No i18n, all strings are litearals
FLD_I18N_TYPE_GNU, ///< GNU gettext internationalization
FLD_I18N_TYPE_POSIX ///< Posix catgets internationalization
};
-namespace fld {
-
-namespace io {
class Project_Reader;
class Project_Writer;
-}
-
-namespace proj {
/**
Data and settings for a FLUID project file.
@@ -56,7 +46,7 @@ public:
Project &project_;
/// One of the available internationalization types.
- fld::I18n_Type type;
+ I18n_Type type;
/// Include file for GNU i18n, writes an #include statement into the source
/// file. This is usually `<libintl.h>` or `"gettext.h"` for GNU gettext.
char *gnu_include;
@@ -83,8 +73,8 @@ public: // Methods
I18n(Project &p);
~I18n();
void reset();
- void read(io::Project_Reader &f, const char *key);
- void write(io::Project_Writer &f) const;
+ void read(Project_Reader &f, const char *key);
+ void write(Project_Writer &f) const;
void set_gnu_include(const char *s);
void set_gnu_conditional(const char *s);
@@ -96,9 +86,6 @@ public: // Methods
void set_posix_set(const char *s);
};
-} // namespace proj
-
-} // namespace fld
#endif // FLUID_PROJ_I18N_H