Listing 3

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