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 |
|
---|
13 | ClassImp(MInputStreamID);
|
---|
14 |
|
---|
15 | // ---------------------------------------------------------------------
|
---|
16 |
|
---|
17 | MInputStreamID::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.