Skeleton for source language abstraction. There's SourceLanguage with several

subclasses, though they don't do much yet. SourceCode is now associated with a
SourceLanguage.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31544 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-07-13 20:45:15 +00:00
parent 5bf75a6f2b
commit fd1f509330
29 changed files with 495 additions and 8 deletions
@@ -0,0 +1,19 @@
/*
* 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;
}