User profile: JivanAmara

User info
User name:JivanAmara
History
Joined:
Number of posts:38
Latest posts:

Very confused, I have basics
Hi littlemissb, If you're not clear on the assignment it would be much more appropriate to talk to ...

How to use boost::asio to implement a synchronous operation with timeouts?
You should spawn a thread to do the io_service::run() call. You can then simulate blocking io in ...

How to use boost::asio to implement a synchronous operation with timeouts?
Basically, you will write a function ('CompletionCondition') to check if any of your three condition...

dereference a pointer to a template classes operator
Hi Alex, If I understand correctly, [code](*(this->pDie))()[/code] should do it. first, the poin...

load an unknown named .txt file c++
You will need an 'itoa()' function of some sort: [code] for (int iFile = 0; iFile < FILE_COUNT; ...