Good coding guidelines tool for C++? [duplicate] - c++

This question already has answers here:
Closed 13 years ago.
Possible Duplicate:
What tools exist for comparing C++ code to coding guidelines?
Can any one suggest any good coding guidelines tool for C++ which must be configurable according to specific requirements?

I've always found the Google C++ Style Guide to be a good one.

Related

Reflection in C++ [duplicate]

This question already has answers here:
Why does C++ not have reflection?
(15 answers)
Closed 9 years ago.
I am currently porting a game from Cocos2d written in ObjectiveC to Cocos2d-x in C++. Now the objective C guys have used Reflection to populate modal classes from a json object. Is the same possible in C++ Can we use reflection in C++ ?
Kind Regards
As mentioned in the comments, C++ has no reflection.
The default solution is to register all the symbols that you need in an associative array, like unordered_map. Here are examples of that.

C++ wrapper for SQLite3 API - alternatives for sqlite3pp [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
What is a good OO C++ wrapper for sqlite
I'm looking for C++ wrappers for SQLite3 API. So far, I only found sqlite3pp. It seems quite up-to-date, however, before settling with that I wanted to see if there are any alternatives. Do you guys know any? Thanks in advance!
I don't know why I can't find the Wiki linked from the SQLite homepage anymore. But it lists lots of C++ wrappers: http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers

Could somebody recommend a book about development of portable C/C++ code? [duplicate]

This question already has an answer here:
Closed 11 years ago.
Possible Duplicate:
The Definitive C++ Book Guide and List
I am faced with the problem of portable code development (C or C++).
Could somebody advise me which book could help in this question?
Edited:
Actually I don't know the types of platforms. I was asked to write a simple program. This program must be portable. I am not expert in this question. I don't understand what it means and what should I do.
Edited
Here is an article devoted to this problem:
http://www.feyrer.de/PGC/Fighting_the_Lemmings.pdf
As I understood, the problem is real.
I'd like to research this question before writing my program.
How 'portable' is portable? DO you mean just Windows/Linux or do you mean it must also port to an 8051 uProc?
The C standard library and C++ are pretty much well supported everywhere. Some C++11 features aren't implemented on all compilers - but the common ones are.
The tricky part comes when you want to talk to anything in the OS or hardware - at which point it might be worth just using something like Qt or WxWidgets - or sticking to Boost.

Cross platform crash-reporters [duplicate]

This question already has answers here:
Cross-platform crash handler
(3 answers)
Closed 9 years ago.
Are there any cross platform crash reporters for C++ besides google-break pad? I have seen google-breakpad but it has very very limited documentation, and I have nothing seen very much mentioned here, google or other source websites
Have a look at BugTrap which might help you.

checkstyle equivalent for C++? [duplicate]

This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
A free tool to check C/C++ source code against a set of coding standards?
hi,
is there tool equivalent to checkstyle for (visual) C++ ?
I wasn't able to find anything on the internet..
thanks...
EDIT
Duplicate of : A free tool to check C/C++ source code against a set of coding standards?
uncrustify - Source Code Beautifier for C, C++
Check out this one on sourceforge: GreatCode. I really like the configuration options that it provides for C/C++.