https://github.com/root-project/root
Raw File
Tip revision: 3ac3c4caec6cbe77d7160b5908e25163ded4bea3 authored by Fons Rademakers on 10 January 2012, 15:14:15 UTC
tag patch release v5-30-06.
Tip revision: 3ac3c4c
t705.h
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/

class A {
  int a;
public:
  A(int x) : a(x) {}
  ~A() {}
  int get() const { return a; }
};
back to top