Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 296 Bytes

noCopyConstructor.md

File metadata and controls

11 lines (6 loc) · 296 Bytes

Pattern: Class with no copy constructor

Issue: -

Description

Class does not have a copy constructor which is recommended since the class contains a pointer to allocated memory.

Further Reading