aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/Accessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'lexlib/Accessor.h')
-rw-r--r--lexlib/Accessor.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/lexlib/Accessor.h b/lexlib/Accessor.h
deleted file mode 100644
index 8fc3f641a..000000000
--- a/lexlib/Accessor.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Scintilla source code edit control
-/** @file Accessor.h
- ** Interfaces between Scintilla and lexers.
- **/
-// Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org>
-// The License.txt file describes the conditions under which this software may be distributed.
-
-#ifndef ACCESSOR_H
-#define ACCESSOR_H
-
-namespace Scintilla {
-
-enum { wsSpace=1, wsTab=2, wsSpaceTab=4, wsInconsistent=8 };
-
-class Accessor;
-class WordList;
-class PropSetSimple;
-
-typedef bool (*PFNIsCommentLeader)(Accessor &styler, Sci_Position pos, Sci_Position len);
-
-class Accessor : public LexAccessor {
-public:
- PropSetSimple *pprops;
- Accessor(IDocument *pAccess_, PropSetSimple *pprops_);
- int GetPropertyInt(const char *, int defaultValue=0) const;
- int IndentAmount(Sci_Position line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0);
-};
-
-}
-
-#endif