mirror of https://github.com/ARMmbed/mbed-os.git
NonCopyable: Prevent doc generation for protected member function.
parent
ba23fef90b
commit
29f7d9d508
|
@ -148,6 +148,7 @@ namespace mbed {
|
||||||
*/
|
*/
|
||||||
template<typename T>
|
template<typename T>
|
||||||
class NonCopyable {
|
class NonCopyable {
|
||||||
|
#ifndef DOXYGEN_ONLY
|
||||||
protected:
|
protected:
|
||||||
/**
|
/**
|
||||||
* Disallow construction of NonCopyable objects from outside of its hierarchy.
|
* Disallow construction of NonCopyable objects from outside of its hierarchy.
|
||||||
|
@ -204,6 +205,7 @@ private:
|
||||||
*/
|
*/
|
||||||
NonCopyable &operator=(const NonCopyable &);
|
NonCopyable &operator=(const NonCopyable &);
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace mbed
|
} // namespace mbed
|
||||||
|
|
Loading…
Reference in New Issue