Revision 23839a6cb5c6ce1890674b83787f024bfdbf0c83 authored by Sergey Linev on 03 March 2015, 16:23:43 UTC, committed by Bertrand Bellenot on 04 March 2015, 08:35:14 UTC
1. Introduce central method where all kind of text drawings
   are handled. At this place decide which kind of rendering -
   plain text, simplify latex or normal MathJax is used
2. Implement correct size adjustment and alignment for
   all kinds of text output (with and without MathJax)
3. Support TMathText class - always MathJax will be used
4. Draw label in TPabeText
5. Avoid concurent calls of JSROOT.AssertPrerequisities

Signed-off-by: Bertrand Bellenot <bertrand.bellenot@cern.ch>
1 parent 3cb3124
Raw File
t1247.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/
#ifndef T1247
#define T1247

class A1 {
 private:
  A1(const A1& x) { }
 public:
  A1() { }
  friend class A2;
  void f(int x) { }
};

class A2 {
 private:
  A2() { }
 public:
  void f(int x) { }
};

class A3 {
#if defined(__ICC) && __ICC==800
 protected:
#else
 private:
#endif
  ~A3() { }
 public:
  friend class A2;
  void f(int x) { }
};

class A4 {
 private:
  A4& operator=(const A4& x) { return(*this); }
 public:
  void f(int x) { }
};

class C1 {
 protected:
  C1(const C1& x) { }
 public:
  C1() { }
  void f(int x) { }
};

class C2 {
 protected:
  C2() { }
 public:
  void f(int x) { }
};

class C3 {
 protected:
  ~C3() { }
 public:
  void f(int x) { }
};

class C4 {
 protected:
  C4& operator=(const C4& x) { return(*this); }
 public:
  void f(int x) { }
};
#endif
back to top