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
Update bug_report.md
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
examples
/
FaultTolerance
/
RolyPoly
/
StateUpdate.h
blob
634d9daff5b9f31068f0ecce8c965713667f3b5f
1
// file : RolyPoly/StateUpdate.h
2
// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
3
#ifndef STATE_UPDATE_H
4
#define STATE_UPDATE_H
5
6
#include
"tao/corba.h"
7
8
class
Checkpointable
9
{
10
public
:
11
virtual
12
~
Checkpointable
();
13
14
virtual CORBA
::
Any
*
15
get_state
();
16
17
static void
18
associate_state
(
CORBA
::
ORB_ptr orb
,
CORBA
::
Any
const
&
state
);
19
20
virtual
void
21
set_state
(
CORBA
::
Any
const
&
state
) =
0
;
22
};
23
24
25
#endif
// STATE_UPDATE_H