diff options
author | Neil <nyamatongwe@gmail.com> | 2013-07-21 14:30:14 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-07-21 14:30:14 +1000 |
commit | c66233079aac2dc65825c9b9507b39ff19cf0d50 (patch) | |
tree | e4377cdb815525eafb67fbc4c22997367c812051 /gtk/Converter.h | |
parent | 413b4f07737f29a3e3275b8a83170505ee137c67 (diff) | |
download | scintilla-mirror-c66233079aac2dc65825c9b9507b39ff19cf0d50.tar.gz |
Standardising header guards and namespaces.
Diffstat (limited to 'gtk/Converter.h')
-rw-r--r-- | gtk/Converter.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/Converter.h b/gtk/Converter.h index 8e7e3e9ef..fe9e23199 100644 --- a/gtk/Converter.h +++ b/gtk/Converter.h @@ -3,6 +3,13 @@ // Copyright 2004 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. +#ifndef CONVERTER_H +#define CONVERTER_H + +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + typedef GIConv ConverterHandle; const ConverterHandle iconvhBad = (ConverterHandle)(-1); // Since various versions of iconv can not agree on whether the src argument @@ -68,3 +75,9 @@ public: } } }; + +#ifdef SCI_NAMESPACE +} +#endif + +#endif |