Search Results

4
votes
2answers
424 views

Boost phoenix or lambda library problem: removing elements from a std::vector.

I recently ran into a problem that I thought boost::lambda or boost::phoenix could help be solve, but I was not able to get the syntax right and so I did it another way. What I wanted to do was rem …
2
votes
4answers
354 views

Linux Programming environment configuration.

The other day I set up an unbuntu installation in a VM and went to gather the tools and libraries I figured I would need for programming moslty in C++. I had a problem though, where to put …
2
votes
6answers
592 views

boost lambda or phoenix problem: using std::for_each to operate on each element of a container

I ran into a problem while cleaning up some old code. This is the function: uint32_t ADT::get_connectivity_data( std::vector< std::vector<uint8_t> > &output ) { out …
8
votes
5answers
1k views

Reading files larger than 4GB using c++ stl.

A few weeks back I was using std::ifstream to read in some files and it was failing immediately on open because the file was larger than 4GB. At the time I couldnt find a decent answer as to why it …
0
votes

Simple C++ UML w/ reverse engineering

Visio also supports this. …
0
votes

Do the concepts in Accelerated C++ Practical Programming by Example still hold up today?

Some of the answers are totally missing the point. OOP in C++ has many opportunities to be much faster than their C counterparts. I'll give the example from I think Effective C++ by Scott Meyers, w …
0
votes

Why do thread functions need to be declared as ‘__cdecl’?

The real answer has to do with how windows internally calls the thread proc routine, and it is expecting the function to abide by a specific calling convention, which in this case is a macro, WINAP …
1
vote

C++’s “placement new”

Script engines can use it in the native interface to allocate native objects from scripts. See Angelscript (www.angelcode.com/angelscript) for examples. …
1
vote

C++ example of Coding Horror or Brilliant Idea?

I actually do something similar, and so does nearly every MMO or online video game ever written. Although they have a concept called a "Packet" and each packet has it's own layout. So you might hav …
0
votes

C++ “Named Parameter Idiom” vs. Boost::Parameter library

You probably don't want Boost.Parameter for general application logic so much as you would want it for library code that you are developing where it can be quite a time saver for clients of the lib …
1
vote

boost lambda or phoenix problem: using std::for_each to operate on each element of a container

After a bit of work I came up with this solution: std::transform(chunks.begin(), chunks.end(), back_inserter(tmp), boost::bind(&ADTChunk::get_connectivity_data, _1) ); …