1/*
2 * Copyright 2013, Rene Gollent, rene@gollent.com.
3 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
4 * Distributed under the terms of the MIT License.
5 */
6
7
8#include "CLanguage.h"
9
10
11CLanguage::CLanguage()
12{
13}
14
15
16CLanguage::~CLanguage()
17{
18}
19
20
21const char*
22CLanguage::Name() const
23{
24	return "C";
25}
26