Updated logging to include the class/method so that it is more obvious where these...
[ACE_TAO.git] / TAO / tao / GIOP_Utils.h
blobce0441ebfa7e047898abffeedb0a80d572906dcb
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file GIOP_Utils.h
7 * GIOP utility definitions
9 * @author Chris Cleeland <cleeland@cs.wustl.edu>
10 * @author Carlos O' Ryan <coryan@uci.edu>
12 //=============================================================================
14 #ifndef TAO_GIOP_UTILS_H
15 #define TAO_GIOP_UTILS_H
17 #include /**/ "ace/pre.h"
19 #include "tao/Object.h"
20 #include "tao/GIOPC.h"
22 #if !defined (ACE_LACKS_PRAGMA_ONCE)
23 # pragma once
24 #endif /* ACE_LACKS_PRAGMA_ONCE */
26 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
28 /**
29 * @class TAO_GIOP_Locate_Status_Msg
31 * @brief Hold the relevant information for every type of Locate msg.
33 * This class is there to hold the relevant info for different
34 * types of locate status messages. As on date we dont know much
35 * about other mesg types other than OBJECT_FORWARD. This class can
36 * be clearly defined as time progresses.
38 class TAO_Export TAO_GIOP_Locate_Status_Msg
40 public:
41 /// The value will need to be used when the Message type is
42 /// TAO_GIOP_OBJECT_FORWARD
43 CORBA::Object_var forward_location_var;
45 /// Type of Locate status message
46 GIOP::LocateStatusType status;
49 TAO_END_VERSIONED_NAMESPACE_DECL
51 #include /**/ "ace/post.h"
52 #endif /*TAO_GIOP_UTILS_H */