From 7ab4b5ab14232d2a00246a8e6c77c73c5c8b78b7 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 21 Jul 2013 14:30:14 +1000 Subject: Standardising header guards and namespaces. --- gtk/Converter.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'gtk/Converter.h') 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 // 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 -- cgit v1.2.3