Kactus2
Kactus2 reference guide
Loading...
Searching...
No Matches
HighlightSource.h
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2// File: HighlightSource.h
3//-----------------------------------------------------------------------------
4// Project: Kactus 2
5// Author: Esko Pekkarinen
6// Date: 18.09.2014
7//
8// Description:
9// Interface for all highlighting import plugins.
10//-----------------------------------------------------------------------------
11
12#ifndef HIGHLIGHTSOURCE_H
13#define HIGHLIGHTSOURCE_H
14
15#include "Highlighter.h"
16
18{
19public:
20
22 virtual ~HighlightSource() {};
23
29 virtual void setHighlighter(Highlighter* highlighter) = 0;
30
31};
32
33#endif // HIGHLIGHTSOURCE_H
virtual void setHighlighter(Highlighter *highlighter)=0
virtual ~HighlightSource()
The destructor.