Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / IO_Cntl_Msg.inl
blobc90b1be554d82ae8eb8e3e25874daf5afa38fb2f
1 // -*- C++ -*-
2 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE
5 ACE_IO_Cntl_Msg::ACE_IO_Cntl_Msg (ACE_IO_Cntl_Cmds c) :
6   cmd_ (c),
7   count_ (0),
8   error_ (0),
9   rval_ (0)
13 ACE_INLINE ACE_IO_Cntl_Msg::ACE_IO_Cntl_Cmds
14 ACE_IO_Cntl_Msg::cmd ()
16   return this->cmd_;
19 ACE_INLINE void
20 ACE_IO_Cntl_Msg::cmd (ACE_IO_Cntl_Cmds c)
22   this->cmd_ = c;
25 ACE_INLINE size_t
26 ACE_IO_Cntl_Msg::count ()
28   return this->count_;
31 ACE_INLINE void
32 ACE_IO_Cntl_Msg::count (size_t c)
34   this->count_ = c;
37 ACE_INLINE int
38 ACE_IO_Cntl_Msg::error ()
40   return this->error_;
43 ACE_INLINE void
44 ACE_IO_Cntl_Msg::error (int e)
46   this->error_ = e;
49 ACE_INLINE int
50 ACE_IO_Cntl_Msg::rval ()
52   return this->rval_;
55 ACE_INLINE void
56 ACE_IO_Cntl_Msg::rval (int r)
58   this->rval_ = r;
61 ACE_END_VERSIONED_NAMESPACE_DECL