blob: ee9f6841f8036051c51ecf3aa0a62df2d7a1de9f (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file Notify_StructuredPushConsumer.h
*
* This is a utility class is to be used by clients of the Notification
* Service to implement the servant for CosNotifyComm::PushConsumer
*
*
* @author Pradeep Gore <pradeep@cs.wustl.edu>
*/
//=============================================================================
#ifndef NOTIFY_STRUCTUREDPUSHCONSUMER_H
#define NOTIFY_STRUCTUREDPUSHCONSUMER_H
#include /**/ "ace/pre.h"
#include "StructuredPushConsumer.h"
typedef TAO_Notify_Tests_StructuredPushConsumer TAO_Notify_StructuredPushConsumer;
#include /**/ "ace/post.h"
#endif /* NOTIFY_STRUCTUREDPUSHCONSUMER_H */
|