ownedpropertylist.h
来自「cint...昨天看到有个c++解释器,叫CINT,down下来一用,很爽,推荐」· C头文件 代码 · 共 55 行
H
55 行
// @(#)root/reflex:$Name: $:$Id: OwnedPropertyList.h,v 1.2 2006/08/03 16:49:21 roiser Exp $// Author: Stefan Roiser 2006// Copyright CERN, CH-1211 Geneva 23, 2004-2006, All rights reserved.//// Permission to use, copy, modify, and distribute this software for any// purpose is hereby granted without fee, provided that this copyright and// permissions notice appear in all copies and derivatives.//// This software is provided "as is" without express or implied warranty.#ifndef ROOT_Reflex_OwnedPropertyList#define ROOT_Reflex_OwnedPropertyList// Include files#include "Reflex/Kernel.h"#include "Reflex/PropertyList.h"namespace ROOT { namespace Reflex { // forward declarations class PropertyListImpl; /** * @class OwnedPropertyList OwnedPropertyList.h OwnedPropertyList.h * @author Stefan Roiser * @date 21/07/2006 * @ingroup Ref */ class RFLX_API OwnedPropertyList : public PropertyList { public: /** constructor */ OwnedPropertyList( PropertyListImpl * propertyListImpl = 0 ) : PropertyList( propertyListImpl ) {} /** delete */ void Delete() { if ( fPropertyListImpl ) { delete fPropertyListImpl; fPropertyListImpl = 0; } } }; // class OwnedPropertyList } // namespace Reflex} // namespace ROOT#endif // ROOT_Reflex_OwnedPropertyList
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?