~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/SmartIndent/SmartIndentFortran.h

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SMARTINDENTFORTRAN_H_INCLUDED
 
2
#define SMARTINDENTFORTRAN_H_INCLUDED
 
3
 
 
4
// For compilers that support precompilation, includes <wx/wx.h>
 
5
#include <wx/wxprec.h>
 
6
 
 
7
#ifndef WX_PRECOMP
 
8
    #include <wx/string.h>
 
9
#endif
 
10
 
 
11
#include <cbplugin.h> // for "class cbSmartIndentPlugin"
 
12
 
 
13
class cbEditor;
 
14
class wxScintillaEvent;
 
15
 
 
16
class SmartIndentFortran : public cbSmartIndentPlugin
 
17
{
 
18
    public:
 
19
        virtual void OnEditorHook(cbEditor* ed, wxScintillaEvent& event) const;
 
20
};
 
21
 
 
22
#endif // SMARTINDENTFORTRAN_H_INCLUDED