diff options
Diffstat (limited to 'src/ScintillaBase.h')
-rw-r--r-- | src/ScintillaBase.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index cb85b55b5..0554d9457 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -8,6 +8,10 @@ #ifndef SCINTILLABASE_H #define SCINTILLABASE_H +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + /** */ class ScintillaBase : public Editor { @@ -90,4 +94,8 @@ public: virtual sptr_t WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam); }; +#ifdef SCI_NAMESPACE +} +#endif + #endif |