I come from a the Objective-C and Cocoa world where there are lots of conventions and many people will say it makes your code beautiful!
Now programming in C++ I cannot find a good document like this one for C++.
Standard C++ probably does not have something like above but I hope I can stick to some other SDK or APIs (like Microsoft’s(?),etc) conventions.
I hope you can provide me with some links.
Do whatever you want as long as its minimal, consistent, and doesn’t break any rules.
Personally, I find the Boost style easiest; it matches the standard library (giving a uniform look to code) and is simple. I personally tack on
mandpprefixes to members and parameters, respectively, giving:That.
(And like I’ve said in comments, do not adopt the Google Style Guide for your code, unless it’s for something as inconsequential as naming convention.)