blob: 74fd09d44980a090b1f2585c981bf430f7982101 (
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
26
27
28
29
|
/* -*- C++ -*- */
// $Id$
// ==========================================================================
//
// = LIBRARY
// orbsvcs
//
// = FILENAME
// Notify_SequencePushSupplier
//
// = DESCRIPTION
// This class is to be used by clients of the Notification Service
// to implement Sequence Push Suppliers.
//
// = AUTHOR
// Pradeep Gore <pradeep@cs.wustl.edu>
//
// ==========================================================================
#ifndef TAO_NOTIFY_SEQUENCEPUSHSUPPLIER_H
#define TAO_NOTIFY_SEQUENCEPUSHSUPPLIER_H
#include /**/ "ace/pre.h"
#include "SequencePushSupplier.h"
typedef TAO_Notify_Tests_SequencePushSupplier TAO_Notify_SequencePushSupplier;
#include /**/ "ace/post.h"
#endif /* TAO_NOTIFY_SequencePUSHSUPPLIER_H */
|