c++ Programming Glossary: lightweight
Heap corruption under Win32; how to locate? http://stackoverflow.com/questions/1069/heap-corruption-under-win32-how-to-locate related issue. Now here's the rub When it's run under a lightweight debug environment say Visual Studio 98 AKA MSVC6 the heap corruption.. tool which is quite powerful being at the same time also lightweight. Got that going at the moment again not much help until something..
C++ Vector of Pointers to Objects http://stackoverflow.com/questions/1361139/c-vector-of-pointers-to-objects want to use std unique_ptr as a default because it's more lightweight. Additionally std shared_ptr can be constructed out of a std..
Interlocked equivalent on Linux http://stackoverflow.com/questions/149710/interlocked-equivalent-on-linux the Interlocked functions on Win32 provide Specifically a lightweight way to atomically increment or add 32 or 64 bit integers c..
Graph nodes coordinates evaluation [closed] http://stackoverflow.com/questions/15579069/graph-nodes-coordinates-evaluation nodes or delete and then evaluate coordinates using some lightweight library. All I need is algorithm which could on dot file and..
How to effectively kill a process in C++ (Win32)? http://stackoverflow.com/questions/1916574/how-to-effectively-kill-a-process-in-c-win32 kill a process in C Win32 I am currently writing a very lightweight program so I have to use C since it is not bound to .NET framework..
Finding C++ interval tree algorithm implementation [duplicate] http://stackoverflow.com/questions/212808/finding-c-interval-tree-algorithm-implementation a viral or restrictive license. Any pointers to a clean lightweight standalone implementation For the use case I have in mind the..
How to make consistent dll binaries across VS versions? http://stackoverflow.com/questions/232926/how-to-make-consistent-dll-binaries-across-vs-versions CreateMyExportedObject return new CMyObject This is a very lightweight way of exporting compiler version and runtime independent class..
C++ fixed point library? [closed] http://stackoverflow.com/questions/2945747/c-fixed-point-library purposes http www.trenki.net content view 17 1 It's quite lightweight and fast and supports some basic mathematics multiplication..
C++ Serialization Performance http://stackoverflow.com/questions/321619/c-serialization-performance to care much about performance. Boost seems somewhat more lightweight in the sense that you don't have an external language for specifying..
Is 'volatile' needed in this multi-threaded C++ code? http://stackoverflow.com/questions/3612505/is-volatile-needed-in-this-multi-threaded-c-code memory. Locks like a Critical Section are often extremely lightweight and in a case of no contention will probably be all implemented..
std::vector versus std::array in C++ http://stackoverflow.com/questions/4424579/stdvector-versus-stdarray-in-c for small sizes because in practice it's mostly a lightweight wrapper around a C style array. However it's more secure since..
How to convert a number to string and vice versa in C++ http://stackoverflow.com/questions/5290089/how-to-convert-a-number-to-string-and-vice-versa-in-c is 42 How to convert a string to a number in C 03 The most lightweight option inherited from C is the functions atoi for integers alphabetical..
Can I force cache coherency on a multicore x86 CPU? http://stackoverflow.com/questions/558848/can-i-force-cache-coherency-on-a-multicore-x86-cpu I need to worry about or will volatile and proper use of lightweight locking mechanisms I was using _InterlockedExchange to set my..
Reverse map lookup http://stackoverflow.com/questions/5749073/reverse-map-lookup Multi Index library or do linear search. UPDATE The most lightweight out of the box solution seems to be Boost.Bimap which stands..
C++ & Boost: encode/decode UTF-8 http://stackoverflow.com/questions/6140223/c-boost-encode-decode-utf-8 it's a header only library that's very lightweight and easy to use. I'm sharing a demo code here should anyone..
Embedding a Ruby interpreter in a C++ app http://stackoverflow.com/questions/626333/embedding-a-ruby-interpreter-in-a-c-app question Would lua not be a better option its really lightweight and is generally the norm for game scripting take a look at..
Portable text based console manipulator http://stackoverflow.com/questions/7876241/portable-text-based-console-manipulator APIs like SetConsoleTextAttribute . ... but is there any lightweight and portable C C library which handles differences between operating..
Which kind of pointer do I use when? http://stackoverflow.com/questions/8706192/which-kind-of-pointer-do-i-use-when T const . Next Boost offers intrusive_ptr which are a lightweight solution if your resource offers reference counted management..
|