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