// This file is a part of the Framsticks GDK. // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. // Refer to http://www.framsticks.com/ for further information. #ifndef _AUTONAME_H_ #define _AUTONAME_H_ #include /// generate human readable (and human like-able) name for the model class AutoName { static SString firstName(Model&); static SString lastName(Model&); public: static SString makeName(Model&); }; #endif