mirror of
1
0
Fork 0
modern-cmake/examples/root-dict/DictExample.h

14 lines
153 B
C
Raw Normal View History

2018-03-28 20:50:38 +02:00
#pragma once
#include <TROOT.h>
class Simple {
Double_t x;
public:
Simple() : x(2.5) {}
Double_t GetX() const;
ClassDef(Simple,1)
};