Changeset 19262 for trunk/Mars/mbase


Ignore:
Timestamp:
10/22/18 19:19:17 (6 years ago)
Author:
tbretz
Message:
Not supported in root 6 until further debugging.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mbase/MTaskInteractive.cc

    r7184 r19262  
    6060#include "MTaskInteractive.h"
    6161
     62#if ROOT_VERSION_CODE < ROOT_VERSION(6,00,00)
    6263#include <Api.h>
     64#endif
    6365#include <TMethodCall.h>
    6466
     
    126128Bool_t MTaskInteractive::Set(void *fcn, Int_t no, const char *params)
    127129{
     130#if ROOT_VERSION_CODE < ROOT_VERSION(6,00,00)
    128131    // this function is called by CINT instead of the function above
    129132    if (!fcn)
     
    159162
    160163    return kTRUE;
     164#else
     165    gLog << err << "MTaskInteractive::Set not yet supported for root 6." << endl;
     166    return kFALSE;
     167#endif
    161168}
    162169
Note: See TracChangeset for help on using the changeset viewer.