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
ClassK.h
#ifndef DICT2_CLASSK_H
#define DICT2_CLASSK_H

#include "ClassC.h"

class ClassK: virtual public ClassC {
 public:
  ClassK() : fK('k') {}
  virtual ~ClassK() {}
  int k() { return fK; }
  void setK(int v) { fK = v; }
 private:
  int fK;
};


#endif // DICT2_CLASSK_H
back to top