diff options
| author | nyamatongwe <devnull@localhost> | 2001-05-21 11:11:14 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-05-21 11:11:14 +0000 |
| commit | b7326156280045529361e62977bdae7e18640990 (patch) | |
| tree | ee8791ea91777108d786e220244a74a3a5a656af /win32/ExternalLexer.h | |
| parent | bd5470af2364a7f7305ee4dc5e4adb27d6f8f876 (diff) | |
| download | scintilla-mirror-b7326156280045529361e62977bdae7e18640990.tar.gz | |
Update from Simon to make startup and finalise work properly.
Diffstat (limited to 'win32/ExternalLexer.h')
| -rw-r--r-- | win32/ExternalLexer.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win32/ExternalLexer.h b/win32/ExternalLexer.h index bbc2cf4f6..62d786991 100644 --- a/win32/ExternalLexer.h +++ b/win32/ExternalLexer.h @@ -61,14 +61,24 @@ private: // LexerManager manages external lexers, contains LexerLibrarys. class LexerManager { + friend class LMMinder; public: LexerManager(); ~LexerManager(); + void Load(); + static LexerManager *GetInstance(); private: + bool m_bLoaded; void EnumerateLexers(); static int UseCount; static LexerLibrary *first; static LexerLibrary *last; + static LexerManager *firstlm; +}; + +class LMMinder { +public: + ~LMMinder(); }; #endif |
