class Voltmeter { public: Voltmeter(double v) : mean (v) { init(); } UncertainPtr read() const; private: void init(); ... };