Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 3fed99adb755541133c639a531bd4cf6 > files > 58

perl-ExtUtils-XSpp-0.180.0-7.mga5.i586.rpm

#ifndef _IntAndString_h_
#define _IntAndString_h_

#include <string>

class IntAndString {
public:
  IntAndString();
  IntAndString(const char* str, int arg);
  ~IntAndString() {}

  int GetInt() { return fInt; }
  const char* GetString();

  void SetValue(int arg);
  void SetValue(const char* arg);


private:
  std::string fString;
  int fInt;
};

#endif