/*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * copyright (C) 2004-2007 * * Umbrello UML Modeller Authors * ***************************************************************************/ #ifndef CODEGEN_UTILS_H #define CODEGEN_UTILS_H #include namespace Codegen_Utils { /** * Return list of C++ datatypes */ TQStringList cppDatatypes(); /** * Get list of C++ reserved keywords */ const TQStringList reservedCppKeywords(); /** * Add C++ stereotypes */ void createCppStereotypes(); /** * Return the input string with the first letter capitalized. */ TQString capitalizeFirstLetter(const TQString &string); } #endif // CODEGEN_UTILS_H