$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Raffaele Romito (berserker_r_at_[hidden])
Date: 2005-12-06 05:07:49
Hi, I need to implement an Event class around (I suppose) boost::condition.
The class needs the follow interface
class Event
{
public:
Event();
~Event();
public:
void reset();
void signal();
void wait(unsigned int ms = 0); // 0 = infinite
};
Any advice?
Thanks