Revision c44ca85a05174ee22a2137b47ae6cc944a8bb7cc authored by Ilka Antcheva on 27 February 2007, 10:52:09 UTC, committed by Ilka Antcheva on 27 February 2007, 10:52:09 UTC
GetFontByName() should really return 0 if it can't find the font
because there are none.


git-svn-id: http://root.cern.ch/svn/root/trunk@18094 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 301d93a
Raw File
Fundamental.h
// @(#)root/reflex:$Name:  $:$Id: Fundamental.h,v 1.5 2006/07/05 07:09:09 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_Fundamental
#define ROOT_Reflex_Fundamental

// Include files
#include "Reflex/internal/TypeBase.h"

namespace ROOT {
   namespace Reflex {


      /**
       * @class Fundamental Fundamental.h Reflex/Fundamental.h
       *  @author Stefan Roiser
       *  @date 24/11/2003
       */
      class Fundamental : public TypeBase {
      public:

         /** default constructor */
         Fundamental( const char * typ,
                      size_t size,
                      const std::type_info & ti ) ;


         /** destructor */
         virtual ~Fundamental() {}

      }; // class Fundamental
   } //namespace Reflex
} //namespace ROOT

#endif // ROOT_Reflex_Fundamental

back to top