Added sharedSynchronization library

This commit is contained in:
Anonymous
2014-01-14 00:45:55 -07:00
parent 1f331006e1
commit 9cbb2cfecb
47 changed files with 1439 additions and 0 deletions
@@ -0,0 +1,39 @@
// ======================================================================
//
// Gate.h
//
// Copyright 2001-2002 Sony Online Entertainment
// All Rights Reseved.
//
// ======================================================================
#ifndef INCLUDED_Gate_h
#define INCLUDED_Gate_h
// ======================================================================
class Gate
{
public:
Gate(bool initiallyOpen);
~Gate();
void wait();
void close();
void open();
private:
Gate(const Gate &o);
Gate &operator =(const Gate &o);
private:
HANDLE handle;
};
// ======================================================================
#endif