From: <de...@us...> - 2004-03-14 11:41:00
|
Update of /cvsroot/rtk/rtk/src/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4086/src/templates Added Files: template.cpp template.h test_core.cpp Log Message: Moved doc/template.cpp , doc/template.h and doc/test_core.cpp to src/templates directory. We'll use this directory for storing RTK source templates. --- NEW FILE: template.cpp --- /** * * RTK * Fast and easy cross-platform GUI ToolKit. * * Copyright (C) 2001-200x RTK Development Team * * This library is free software; you can redistribute it and/or modify it * under the terms of the slightly modified (see the "EXCEPTION NOTICE" part * of RTK Library License) GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * and along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA . * * Also you should have received a copy of RTK Library License, if not please * write an e-mail to some of RTK authors (listed in file AUTHORS). * * Bug reports: bu...@rt... * Suggestions: rf...@rt... ***************************************************************************/ /** * $Source: /cvsroot/rtk/rtk/src/templates/template.cpp,v $ ***** * Authors (chronological order): * $fname $lname, $email * Contributors (chronological order): * $fname $lname, $email ***** * T0D0 List: * - ***************************************************************************/ #include "template.h" namespace Rtk { // C/C++ code here }; // Rtk /** * $Id: template.cpp,v 1.1 2004/03/14 11:32:04 dejan Exp $ ***************************************************************************/ --- NEW FILE: template.h --- /** * * RTK * Fast and easy cross-platform GUI ToolKit. * * Copyright (C) 2001-200x RTK Development Team * * This library is free software; you can redistribute it and/or modify it * under the terms of the slightly modified (see the "EXCEPTION NOTICE" part * of RTK Library License) GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * and along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA . * * Also you should have received a copy of RTK Library License, if not please * write an e-mail to some of RTK authors (listed in file AUTHORS). * * Bug reports: bu...@rt... * Suggestions: rf...@rt... ***************************************************************************/ /** * $Source: /cvsroot/rtk/rtk/src/templates/template.h,v $ ***** * Authors (chronological order): * $fname $lname, $email * Contributors (chronological order): * $fname $lname, $email ***** * T0D0 List: * - ***************************************************************************/ #ifndef _RTK_FILENAME_H_ #define _RTK_FILENAME_H_ 1 namespace Rtk { /** * Comment for RTKClass * (important for automatic documentation (Doxygen) building) */ class RTK_API RTKClass { public: protected: private: }; // RTKClass }; // Rtk namespace #endif /** * $Id: template.h,v 1.1 2004/03/14 11:32:05 dejan Exp $ ***************************************************************************/ --- NEW FILE: test_core.cpp --- /** * * RTK * Fast and easy cross-platform GUI ToolKit. * * Copyright (C) 2001-200x RTK Development Team * * This library is free software; you can redistribute it and/or modify it * under the terms of the slightly modified (see the "EXCEPTION NOTICE" part * of RTK Library License) GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * and along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA . * * Also you should have received a copy of RTK Library License, if not please * write an e-mail to some of RTK authors (listed in file AUTHORS). * * Bug reports: bu...@rt... * Suggestions: rf...@rt... ***************************************************************************/ /** * $Source: /cvsroot/rtk/rtk/src/templates/test_core.cpp,v $ ***** * Authors (chronological order): * $fname $lname, $email * Contributors (chronological order): * $fname $lname, $email ***** * Important note: This file, test_core.cpp shouldn't be EVER overwritten * in our CVS. It is actually template for test_* projects in our IDEs. * RTK developers should work on this file in their working environments, and * when they are satisfied with developed file they should save it with * PROPER name to /test/* directory. ***************************************************************************/ #include "../test.h" /** * $Id: test_core.cpp,v 1.1 2004/03/14 11:32:05 dejan Exp $ ***************************************************************************/ |