https://github.com/root-project/root
Raw File
Tip revision: 2cd3aafb76e161c5e687de877863ffeb4022b4b0 authored by Gerardo Ganis on 11 June 2012, 16:52:22 UTC
Import patch r44048 removing the automatic creation of TDrawFeedback in TProofChain
Tip revision: 2cd3aaf
t991.cxx
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/

#ifdef __CINT__
#pragma include "test1.dll"
#pragma include "test2.dll"
#pragma include "test3.dll"
#else
#include "t991a.h"
#include "t991b.h"
#include "t991c.h"
#endif

//#include <stdio.h>
#include <iostream>
using namespace std;

int main() {
  //printf("success\n");
  cout << "success"<< endl;
  Master::Container x;
  Slave2::Object obj;
  x.func(&obj);
  return 0;
}
back to top