Name: Anonymous 2012-11-30 1:02
>you will never have a gf that you have loving passionate sex with
void pirate_a(Copyrighted& piratee)
{
std::cout << piratee.get() << std::endl;
}
void pirate_b(Copyrighted piratee)
{
std::cout << piratee.get() << std::endl;
}
...
Copyrighted gaga;
gaga.set("Lady Gaga", "Beautiful Dirty Rich");
pirate_a(gaga); // This one only does ``fair use''.
pirate_b(gaga); // This one is a dirty pirate!
...