C++ is Not a Scripting Language
Ok, listen up you fuckers: one of the problems with programming and programmers is that a lot of the developers who are really good at coding are not so good at explaining their ideas to others. Being the egoists that programmers are, instead of realising that we don't grasp inter-human communication so well, we tend to think instead that our audience is just too slow to grasp our brilliant ideas. But I digress. What I am trying to say is that when you hack on code in a procedural, scriptish way, it's hard to avoid developing certain conventions that you have to enforce yourself. And probably others whom you work with will have different preferences in the kinds of conventions that they would choose to follow, and it results in big arguments with lots of hand-waving and raised voices. Don't pretend like you don't know exactly what I'm talking about.
C++ is not a well designed programming language, and it does not have an even remotely elegant approach to the whole object-oriented bag, but it does allow for encapsulation, and straight-forward class inheritance is possible. Just because many features of C++ are totally archaic doesn't mean that you have to write archaic C++ code--it is possible to write reasonable object-oriented C++ code just as it is possible to write Objective C. Now here's a trick that all programmers know about, and most programmers are constantly forgetting: if you write your code in a well encapsulated manner, you can make it self-enforcing to the point where your co-workers don't need to argue with you about it. That really is the whole point of encapsulation, and even object-oriented code at all. Otherwise there'd never have been a need to progress beyond the world of C.
So the next time you get in a big argument with another programmer over whether or not such-and-such a way of coding is reasonable, consider whether or not you could have avoided that nasty confrontation if you'd spent more time encapsulating your code and generalizing it to the point where others can use it without worrying about how it works under the hood. It's not a cure-all solution, but you may be surprised at how effective it can be.