blob: aaa7826b07f7d5cfff073c82134a2131978746ab (
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
|
/* -*- C++ -*- */
// $Id$
// ==========================================================================
//
// = LIBRARY
// TAO/orbsvcs/tests/Notify/Discarding
//
// = FILENAME
// common.h
//
// = DESCRIPTION
// A couple of useful functions
//
// = AUTHOR
// Chad Elliott <elliott_c@ociweb.com>
//
// ==========================================================================
#ifndef TAO_COMMON_H
#define TAO_COMMON_H
#include "orbsvcs/orbsvcs/CosNotifyChannelAdminS.h"
const char*
Any_String (const CORBA::Any& any);
#endif /* TAO_COMMON_H */
|