namespacebuilder.h

来自「cint...昨天看到有个c++解释器,叫CINT,down下来一用,很爽,推荐」· C头文件 代码 · 共 58 行

H
58
字号
// @(#)root/reflex:$Name:  $:$Id: NamespaceBuilder.h,v 1.6 2006/07/05 07:09:08 roiser Exp $// Author: Stefan Roiser 2004// 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_NamespaceBuilder#define ROOT_Reflex_NamespaceBuilder// Include files#include "Reflex/Scope.h"namespace ROOT{   namespace Reflex{      /**        * @class NamespaceBuilder NamespaceBuilder.h Reflex/Builder/NamespaceBuilder.h       * @author Stefan Roiser       * @ingroup RefBld       * @date 30/3/2004       */      class RFLX_API NamespaceBuilder  {      public:                     /** constructor */         NamespaceBuilder( const char * nam );         /** destructor */         virtual ~NamespaceBuilder() {}         /** AddProperty will add a PropertyNth           * @param  key the PropertyNth key          * @param  value the value of the PropertyNth          * @return a reference to the building class          */         NamespaceBuilder & AddProperty( const char * key, Any value );         NamespaceBuilder & AddProperty( const char * key, const char * value );      private:         /** the namespace */         Scope fNamespace;      }; // class NamespaceBuilder   } // namespace Reflex} // namespace ROOT#endif // ROOT_Reflex_NamespaceBuilder

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?