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
t1286.cxx
#include <string> 
namespace std {} using namespace std; 

class B 
{ 
public: 
   string str; 
}; 

int t1286() 
{ 
   B * arrB = new B[10];
   for(int i=0;i<10;++i) {
      arrB[i].str = "test";
      arrB[i].str += ( 'a'+i );
   }
   for(int i=0;i<10;++i) {
      printf(arrB[i].str.c_str());
      printf("\n");
   }

   if( arrB ) 
      delete[] arrB; 
   return 0;
}

int main() {
   return t1286();
}
back to top