https://github.com/root-project/root
Raw File
Tip revision: 7cc66162bfc23116560c98ff0ff578bc2f21fcd3 authored by Fons Rademakers on 01 December 2013, 10:58:21 UTC
make version v5-34-13.
Tip revision: 7cc6616
VPerson.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/

#ifndef VPERSON_H
#define VPERSON_H

#include "VString.h"
#include "VObject.h"

class VPerson : public VObject
{
public:
   VPerson();
   VPerson(const VPerson& x);
   VPerson(const char* nameIn, const char* syozokuIn);
   VPerson(const char* nameIn, int num);
   VPerson& operator=(const VPerson& x);
   ~VPerson();
   void set(const char* nameIn, const char* shozokuIn);

   const char* Name()
   {
      return name.String();
   }

   const char* Syozoku()
   {
      return syozoku.String();
   }

   void disp();

private:
   VString name;
   VString syozoku;
};

#endif // VPERSON_H
back to top