/usr/include/tao/GIOP_Utils.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | // -*- C++ -*-
//=============================================================================
/**
* @file GIOP_Utils.h
*
* $Id: GIOP_Utils.h 79705 2007-09-24 07:45:37Z johnnyw $
*
* GIOP utility definitions
*
*
* @author Chris Cleeland <cleeland@cs.wustl.edu>
* @author Carlos O' Ryan <coryan@uci.edu>
*/
//=============================================================================
#ifndef TAO_GIOP_UTILS_H
#define TAO_GIOP_UTILS_H
#include /**/ "ace/pre.h"
#include "tao/Object.h"
#include "tao/GIOPC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_GIOP_Locate_Status_Msg
*
* @brief Hold the relevant information for every type of Locate msg.
*
* This class is there to hold the relevant info for different
* types of locate status messages. As on date we dont know much
* about other mesg types other than OBJECT_FORWARD. This class can
* be clearly defined as time progresses.
*/
class TAO_Export TAO_GIOP_Locate_Status_Msg
{
public:
/// The value will need to be used when the Message type is
/// TAO_GIOP_OBJECT_FORWARD
CORBA::Object_var forward_location_var;
/// Stype of Locate status message
GIOP::LocateStatusType status;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /*TAO_GIOP_UTILS_H */
|