00001 #ifndef __[FILENAME]_H__ 00002 #define __[FILENAME]_H__ 00003 00004 /** 00005 * 00006 * File Name : [File Name].h 00007 * 00008 * Description: [A very brief description of what this file contains. It can 00009 * discuss design approach, constraints, reference design docu- 00010 * mentation, etc.] 00011 * 00012 */ 00013 00014 /* 00015 * This file is part of TEMPLATE. 00016 * 00017 * TEMPLATE is free software: you can redistribute it and/or modify 00018 * it under the terms of the GNU General Public License as published by 00019 * the Free Software Foundation, either version 2 of the License, or 00020 * (at your option) any later version. 00021 * 00022 * TEMPLATE is distributed in the hope that it will be useful, 00023 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00024 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00025 * GNU General Public License for more details. 00026 * 00027 * You should have received a copy of the GNU General Public License 00028 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00029 */ 00030 00031 /** 00032 * Copyright (C) 2009 iRex Technologies B.V. 00033 * All rights reserved. 00034 */ 00035 00036 //----------------------------------------------------------------------------- 00037 // Include Files 00038 //----------------------------------------------------------------------------- 00039 00040 00041 //----------------------------------------------------------------------------- 00042 // Macro Definitions 00043 //----------------------------------------------------------------------------- 00044 00045 00046 //----------------------------------------------------------------------------- 00047 // Forward Declarations 00048 //----------------------------------------------------------------------------- 00049 00050 00051 //----------------------------------------------------------------------------- 00052 // Type Declarations 00053 //----------------------------------------------------------------------------- 00054 00055 00056 //----------------------------------------------------------------------------- 00057 // Global Constants 00058 //----------------------------------------------------------------------------- 00059 00060 00061 //============================================================================= 00062 // Class Declarations 00063 //============================================================================= 00064 00065 /**============================================================================ 00066 * 00067 * Class Name: [Class Name 1] 00068 * 00069 * @brief: [A very detailed description regarding the [Class Name1]. It 00070 * provides precise information on its functionality and purpose, 00071 * constraints, etc..] 00072 * 00073 *============================================================================*/ 00074 class [Class Name 1] : public [Base Class] 00075 { 00076 public: 00077 /// Document enumerations, typedef, or struct using '///' before its 00078 /// declaration. 00079 00080 /**------------------------------------------------------------------------ 00081 * 00082 * Name : [Member Function] 00083 * 00084 * @brief [Full description of the member function of what it does, 00085 * how to use it, limitations, expectations, ownership issues, 00086 * etc.] 00087 * 00088 * @param [Itemize 1st parameter and provide a meaningful description] 00089 * @param [Itemize 2nd parameter and provide a meaningful description] 00090 * . 00091 * . 00092 * . 00093 * @param [Itemize nth parameter and provide a meaningful description] 00094 * 00095 * @return [Describes the return value, if any, and its meaning] 00096 * 00097 *--------------------------------------------------------------------------*/ 00098 00099 00100 protected: 00101 /// Document variables, enumerations, typedef, or struct using '///' before its 00102 /// declaration. 00103 00104 private: 00105 /// Document variables, enumerations, typedef, or struct using '///' before its 00106 /// declaration. 00107 00108 };// class [Class Name 1] 00109 00110 00111 #endif