PixelLightAPI
.
|
00001 /*********************************************************\ 00002 * File: Method.h * 00003 * 00004 * Copyright (C) 2002-2012 The PixelLight Team (http://www.pixellight.org/) 00005 * 00006 * This file is part of PixelLight. 00007 * 00008 * PixelLight is free software: you can redistribute it and/or modify 00009 * it under the terms of the GNU Lesser General Public License as published by 00010 * the Free Software Foundation, either version 3 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * PixelLight is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public License 00019 * along with PixelLight. If not, see <http://www.gnu.org/licenses/>. 00020 \*********************************************************/ 00021 00022 00023 #ifndef __PLCORE_METHOD_H__ 00024 #define __PLCORE_METHOD_H__ 00025 #pragma once 00026 00027 00028 //[-------------------------------------------------------] 00029 //[ Includes ] 00030 //[-------------------------------------------------------] 00031 #include "PLCore/Base/Func/Functor.h" 00032 #include "PLCore/Base/Func/FuncDesc.h" 00033 00034 00035 //[-------------------------------------------------------] 00036 //[ Namespace ] 00037 //[-------------------------------------------------------] 00038 namespace PLCore { 00039 00040 00041 //[-------------------------------------------------------] 00042 //[ Classes ] 00043 //[-------------------------------------------------------] 00044 /** 00045 * @brief 00046 * Method of a class 00047 * 00048 * @remarks 00049 * This class template represents methods (functions that belong to objects). 00050 */ 00051 template <typename DESC> 00052 class Method : public DESC::FuncType { 00053 00054 00055 //[-------------------------------------------------------] 00056 //[ Public static data ] 00057 //[-------------------------------------------------------] 00058 public: 00059 static DESC Desc; /**< Method descriptor */ 00060 00061 00062 //[-------------------------------------------------------] 00063 //[ Public functions ] 00064 //[-------------------------------------------------------] 00065 public: 00066 /** 00067 * @brief 00068 * Constructor 00069 * 00070 * @param[in] pMemFunc 00071 * Pointer to member function of a class 00072 * @param[in] pObject 00073 * Pointer to object to which the method belongs 00074 */ 00075 Method(const typename DESC::MethType::MemFuncType &pMemFunc, typename DESC::ClassType *pObject) : 00076 DESC::FuncType(pMemFunc, pObject) 00077 { 00078 // Ensure that the compiler will actually create static instances 00079 Desc.Dummy(); 00080 } 00081 00082 /** 00083 * @brief 00084 * Destructor 00085 */ 00086 virtual ~Method() 00087 { 00088 } 00089 00090 00091 //[-------------------------------------------------------] 00092 //[ Public virtual DynFunc functions ] 00093 //[-------------------------------------------------------] 00094 public: 00095 /** 00096 * @brief 00097 * Get func descriptor 00098 * 00099 * @return 00100 * Func descriptor 00101 */ 00102 virtual const FuncDesc *GetDesc() const override 00103 { 00104 // Return descriptor 00105 return &Desc; 00106 } 00107 00108 00109 }; 00110 00111 00112 // Static data instances 00113 template<typename DESC> 00114 DESC Method<DESC>::Desc; 00115 00116 00117 //[-------------------------------------------------------] 00118 //[ Namespace ] 00119 //[-------------------------------------------------------] 00120 } // PLCore 00121 00122 00123 #endif // __PLCORE_METHOD_H__
|