Search Results

11
votes

Is it reasonable to have Boost as a dependency for a C++ open source project?

Take a look at http://www.boost.org/doc/tools.html. Specifically the bcp utility would come in handy if you would like to embed your boost-dependencies into your project. An excerpt from the …
1
vote

Manual for Cross-Compile a c++ application from linux to windows?

It depends on what you mean (I couldn't really say). If you mean that you want to use an existing Linux application on Windows, then you could try compiling it using cygwin on Wind …
0
votes

What is a good scripting language to integrate into high-performance applications?

If you haven't looked at it yet I would suggest you check out Angelscript. I have successfully used it in a cross platform …
5
votes

Header Files in C and C++

Header files are not mandatory. #include simply copy/paste whatever file included (including .c source files) Commonly used in real life projec …
1
vote

How to reduce CPU usage of a program?

It's all too easy to blame the hardware. I would suggest you try running your program on a different system and see how that turns out with the same data. Probably you have a bug. …
0
votes

Reverse engineer C++ DLL

A little depending on your situation I would keep the legacy/binary DLL as-is and write a wrapper DLL that will change and/or add any additional behavior. The idea is to aggregate the old …
3
votes

Supporting GPL based plugins.

The usual IANALBMGI (I am not a lawyer but my girlfriend is) disclaimer. However, I find this quite interesting and would like to speculate a bit. You can draw a parallel to the com …
9
votes

Why artificially limit your code to C?

There are loads of arguments about embedded programming, performance and stuff, I don't buy them. C++ easily compares to C in those areas. However: Just recently after havi …
1
vote

open source dev environment for C++: what’s better?

Personally I have used Eclipse+CDT for a number of projects. Paired with wxWidgets it has provided me with enough to keep myself pretty much crossplatform (which I think is a big plus). Als …
2
votes

how to return two dimensional char array c++ ?

I would really recommend using STL vector<> or boost/multi_array containers for this. If you must use arrays, then I would recommend using a typedef to define the array. …
1
vote

C++ Libraries: Questions need Definite Answers(Opinions)

If you're concerned about cross-platform development you should really checkout wxWidgets as it provides not only a GUI widget set but also ot …
1
vote

What are the good parts in the poorly-thought-of non-standard C++ libraries?

On a more general note I think one of the reasons that people stick with old, awkward and perhaps even obsolete libraries is that they have grown used to it and anything new and shiny might do the …
3
votes

why STL header files have no extension?

The #include directive doesn't discriminate file types (it's just a glorified copy-paste operation) - no automatic adding of .h is happening. C++ standard header files are provided w …
1
vote

Is using unsigned integer overflow good practice?

To put it shortly: It is perfectly legal/OK/safe to use unsigned integer overflow as you see fit as long as you pay attention and adhere to the definition (for whatever purpose - optimiz …