OpenCOVER
coSynchronizedAction.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8#ifndef CO_SYNCACTION_H
9#define CO_SYNCACTION_H
10
11#include <util/coExport.h>
12namespace opencover
13{
16class COVEREXPORT coSynchronizedAction
17{
18protected:
19 static int sequenceNumber;
20
21public:
23 int host;
24 int type;
28 coSynchronizedAction(int sequenceNumber, int host, int type, int blocking);
30 void fireAction(int type);
31 //virtual void executeInSync(int initiatingHostID, int type, int blocking);
32};
33}
34#endif
Definition: ARToolKit.h:33
Definition: coSynchronizedAction.h:17
int type
Definition: coSynchronizedAction.h:24
static int sequenceNumber
Definition: coSynchronizedAction.h:19
coSynchronizedAction(int sequenceNumber, int host, int type, int blocking)
int numberOfConfirmations
Definition: coSynchronizedAction.h:26
int host
Definition: coSynchronizedAction.h:23
int blocking
Definition: coSynchronizedAction.h:25
int mySequenceNumber
Definition: coSynchronizedAction.h:22