source: trunk/MagicSoft/Mars/mbase/MInputStreamID.cc@ 604

Last change on this file since 604 was 458, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 1016 bytes
Line 
1///////////////////////////////////////////////////////////////////////
2// //
3// MInpuStreamID //
4// //
5// This is a ID which is assigned to tasks and to a task list. //
6// It depends on this ID whether a task is executed by the //
7// MTaskList::Process member funtion or not. //
8// //
9///////////////////////////////////////////////////////////////////////
10
11#include "MInputStreamID.h"
12
13ClassImp(MInputStreamID);
14
15// ---------------------------------------------------------------------
16
17MInputStreamID::MInputStreamID(const char *name, const char *title)
18{
19 //
20 // (default) constructor
21 //
22 *fName = name ? name : ClassName();
23 *fTitle = title;
24
25 fStreamId = new char[4];
26 strcpy(fStreamId, "All");
27}
28
Note: See TracBrowser for help on using the repository browser.