source: trunk/MagicSoft/MarsOctober/mbase/MInputStreamID.cc@ 8405

Last change on this file since 8405 was 447, checked in by harald, 24 years ago
Bringing the sources for the octobertest under CVS controll. (november, 3rd, 2000)
  • Property svn:executable set to *
File size: 382 bytes
Line 
1#include "MInputStreamID.h"
2
3ClassImp(MInputStreamID);
4
5// ---------------------------------------------------------------------
6
7MInputStreamID::MInputStreamID(const char *name, const char *title) : MParContainer(name, title)
8{
9 //
10 // (default) constructor
11 //
12 fName = name ? name : ClassName();
13 fTitle = title;
14
15 fID = new char[4];
16 strcpy(fID, "All");
17}
18
Note: See TracBrowser for help on using the repository browser.