20 lines
268 B
C++
20 lines
268 B
C++
/*
|
|||
|
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
||
|
|
* Distributed under the terms of the MIT License.
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
#include "SourceLanguage.h"
|
||
|
|
|
||
|
|
|
||
|
|
SourceLanguage::~SourceLanguage()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
SyntaxHighlighter*
|
||
|
|
SourceLanguage::GetSyntaxHighlighter() const
|
||
|
|
{
|
||
|
|
return NULL;
|
||
|
|
}
|