//////////////////////////////////////////////////////// // Value container implementation file // // Just a small container class for user-defined values // //////////////////////////////////////////////////////// #include "PValues.h" #include #include using namespace std; PValues::PValues() : TObject() , pointer{0} { // pointer=0; } PValues::PValues(const PValues & p) : TObject(p) , pointer{p.pointer} { // pointer=p.pointer; for (int i=0;i