/////////////////////////////////////////////////////////////////////// // // // MInpuStreamID // // // // This is a ID which is assigned to tasks and to a task list. // // It depends on this ID whether a task is executed by the // // MTaskList::Process member funtion or not. // // // /////////////////////////////////////////////////////////////////////// #include "MInputStreamID.h" ClassImp(MInputStreamID); // --------------------------------------------------------------------- MInputStreamID::MInputStreamID(const char *name, const char *title) { // // (default) constructor // *fName = name ? name : ClassName(); *fTitle = title; fStreamId = new char[4]; strcpy(fStreamId, "All"); }