From 9131359e9b0f3aa9c004c651601dd17d0224b75d Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sat, 24 Feb 2001 01:07:27 +0000 Subject: Updated documentation comments from Philippe. --- src/DocumentAccessor.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/DocumentAccessor.h') diff --git a/src/DocumentAccessor.h b/src/DocumentAccessor.h index ab0be9aba..abbb55f18 100644 --- a/src/DocumentAccessor.h +++ b/src/DocumentAccessor.h @@ -1,13 +1,20 @@ -// DocumentAccessor.h - implementation of BufferAccess and StylingAccess on a Scintilla rapid easy access to contents of a Scintilla +// Scintilla source code edit control +/** @file DocumentAccessor.h + ** Implementation of BufferAccess and StylingAccess on a Scintilla + ** rapid easy access to contents of a Scintilla. + **/ // Copyright 1998-2001 by Neil Hodgson // The License.txt file describes the conditions under which this software may be distributed. class Document; +/** + */ class DocumentAccessor : public Accessor { // Private so DocumentAccessor objects can not be copied DocumentAccessor(const DocumentAccessor &source) : Accessor(), props(source.props) {} DocumentAccessor &operator=(const DocumentAccessor &) { return *this; } + protected: Document *pdoc; PropSet &props; @@ -21,6 +28,7 @@ protected: bool InternalIsLeadByte(char ch); void Fill(int position); + public: DocumentAccessor(Document *pdoc_, PropSet &props_) : Accessor(), pdoc(pdoc_), props(props_), -- cgit v1.2.3