]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG/Tools/AliNamedString.cxx
update
[u/mrichter/AliRoot.git] / PWG / Tools / AliNamedString.cxx
1 // $Id$
2 //
3 // Named string object.
4 //
5 // Author: S.Aiola
6
7 #include "AliNamedString.h"
8
9 ClassImp(AliNamedString)
10
11 //________________________________________________________________________
12 AliNamedString::AliNamedString() : 
13   TObjString(),
14   fName()
15 {
16   // Dummy constructor.
17
18 }
19
20 //________________________________________________________________________
21 AliNamedString::AliNamedString(const char *name, const char *string) :
22   TObjString(string),
23   fName(name)
24 {
25   // Standard constructor.
26
27 }