Click here to Skip to main content
15,891,375 members
Articles / Programming Languages / C++11

The Cow Class: A Copy-On-Write C++ Template

Rate me:
Please Sign up or sign in to vote.
4.74/5 (9 votes)
9 Feb 2020CPOL 14.3K   5  
Copy your objects only when needed
Often you have an object that would like to be shared in read-only form across the callers, but you would like someone to create copies when it's modified. Here is a small template that will do that for you automatically.

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Greece Greece
I'm working in C++, PHP , Java, Windows, iOS, Android and Web (HTML/Javascript/CSS).

I 've a PhD in Digital Signal Processing and Artificial Intelligence and I specialize in Pro Audio and AI applications.

My home page: https://www.turbo-play.com

Comments and Discussions