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