~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

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) = 0;
 
14
};
 
15
 
 
16
#endif // BASEEXPORTER_INCLUDED