[6916] Fixed typos in spell checking code.
[getmangos.git] / dep / ACE_wrappers / ace / IO_Cntl_Msg.inl
blob6b8558e080682e4c43d73729d49a274a49a1cb68
1 // -*- C++ -*-
2 //
3 // $Id: IO_Cntl_Msg.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
7 ACE_INLINE
8 ACE_IO_Cntl_Msg::ACE_IO_Cntl_Msg (ACE_IO_Cntl_Cmds c)
10   this->cmd_ = c;
13 ACE_INLINE ACE_IO_Cntl_Msg::ACE_IO_Cntl_Cmds
14 ACE_IO_Cntl_Msg::cmd (void)
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 (void)
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 (void)
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 (void)
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