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