repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git]
/
TAO
/
examples
/
RTScheduling
/
Synch_i.h
blob
f5c6a981cdea32c1fb8b8576186b5d50f405e63d
1
#ifndef SYNCH_I_H
2
#define SYNCH_I_H
3
4
#include
"SynchS.h"
5
6
class
SYNCH_Export Synch_i
:
public
POA_Synch
7
{
8
public
:
9
10
Synch_i
(
void
);
11
virtual
void
go
(
CORBA
::
Long base_time
);
12
13
int
synched
(
void
);
14
15
ACE_Time_Value
*
base_time
(
void
);
16
17
private
:
18
int
synched_
;
19
ACE_Time_Value base_time_
;
20
};
21
22
#endif
/*SYNCH_I_H*/