blob: 0ba82c82b3bed5568fea585bef593e3ce6f13b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef CRASHED_CALLBACK_CRASHED_CALLBACK_H
#define CRASHED_CALLBACK_CRASHED_CALLBACK_H
#include /**/ "ace/pre.h"
#include "TestS.h"
/// Implement the Test::Crashed_Callback interface
class Crashed_Callback
: public virtual POA_Test::Crashed_Callback
{
public:
/// Constructor
Crashed_Callback ();
// = The skeleton methods
virtual CORBA::Boolean are_you_there ();
virtual void crash_now_please ();
virtual void test_oneway ();
};
#include /**/ "ace/post.h"
#endif /* CRASHED_CALLBACK_CRASHED_CALLBACK_H */
|