~damien-moore/+junk/codeblocks

« back to all changes in this revision

Viewing changes to src/plugins/contrib/source_exporter/BaseExporter.h

  • Committer: Damien Moore
  • Date: 2013-10-11 14:25:27 UTC
  • Revision ID: damienlmoore@gmail.com-20131011142527-w13ki0x8yjd7973d
copy of Code::Blocks repo based on SVN rev 9395

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BASEEXPORTER_INCLUDED
 
2
#define BASEEXPORTER_INCLUDED
 
3
 
 
4
#include <wx/wx.h>
 
5
#include <wx/wxscintilla.h>
 
6
 
 
7
#include <editorcolourset.h>
 
8
 
 
9
class BaseExporter
 
10
{
 
11
  public:
 
12
    virtual ~BaseExporter() = 0;
 
13
    virtual void Export(const wxString &filename, const wxString &title, const wxMemoryBuffer &styled_text, const EditorColourSet *color_set, int lineCount, int tabWidth) = 0;
 
14
};
 
15
 
 
16
#endif // BASEEXPORTER_INCLUDED