https://github.com/root-project/root
Raw File
Tip revision: 2cd3aafb76e161c5e687de877863ffeb4022b4b0 authored by Gerardo Ganis on 11 June 2012, 16:52:22 UTC
Import patch r44048 removing the automatic creation of TDrawFeedback in TProofChain
Tip revision: 2cd3aaf
VPerson.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.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