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++.
Related
This question already has answers here:
SSE SSE2 and SSE3 for GNU C++ [closed]
(5 answers)
What are intrinsics?
(4 answers)
Closed 1 year ago.
What is meant by SSE intrinsics from c++ development point of view? All I could find is that they help things to run faster on a specific platform. But what does it actually means? Does it mean that in the code I will see some #ifdef code for each platform? Or does it mean something else?
Another doubt is that if I am looking at a GitHub project then how can I check if it has used intrinsics for any of the supported platform? Where can I browse to see if this has been done for any platform in the GitHub project itself? Can I search for any specific text to make the search faster?
This question already has answers here:
How do I call a .NET assembly from C/C++?
(9 answers)
Closed 8 years ago.
I want to use this function to zip up a folder from a C++ console application. No examples are given in the article of how to use the function from C++, just C# or VB, and I can't find any other code samples anywhere.
The article doesn't really even clarify whether the function is available in C++. Is this function supported in C++? And if so, how do I call it?
Thanks.
This doesn't answer your specific question of calling that .NET method you requested, but, if you want to compress some files using native C++, look at using Zlib and there is a contribution app called minizip which you can use for opening / creating zip archives.
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
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.
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.