dfrph.hpp: Don't allow copies of DFRPH

Small change to explicitly hide the copy constructor for DFRPH.

Signed-off-by: Noel Eck <noel.eck@intel.com>
This commit is contained in:
Noel Eck 2017-07-10 14:43:02 -07:00
parent 5a1f27a92d
commit 539fbe7c75

View File

@ -132,6 +132,11 @@ namespace upm {
float pH(unsigned int samples = 15); float pH(unsigned int samples = 15);
private: private:
/**
* Don't allow copies of this class
*/
DFRPH(const DFRPH&) {}
dfrph_context _dev; dfrph_context _dev;
}; };
} }