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 11 CppLanguage::CppLanguage() 12 { 13 } 14 15 16 CppLanguage::~CppLanguage() 17 { 18 } 19 20 21 const char* 22 CppLanguage::Name() const 23 { 24 return "C++"; 25 } 26