mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 04:57:30 +03:00
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:
parent
5a1f27a92d
commit
539fbe7c75
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user