summaryrefslogtreecommitdiff
path: root/comm/Channel.cc
diff options
context:
space:
mode:
authorchatty1993-11-29 10:34:50 +0000
committerchatty1993-11-29 10:34:50 +0000
commitd47eb55b4cbd4a51fcdcaf5de0b0db92a4074244 (patch)
tree92c0be7eed16a6866cf0134970a4fbdada8b896d /comm/Channel.cc
parent1b636920b034b3cd616d91950907c395f1fd1dca (diff)
downloadivy-league-d47eb55b4cbd4a51fcdcaf5de0b0db92a4074244.zip
ivy-league-d47eb55b4cbd4a51fcdcaf5de0b0db92a4074244.tar.gz
ivy-league-d47eb55b4cbd4a51fcdcaf5de0b0db92a4074244.tar.bz2
ivy-league-d47eb55b4cbd4a51fcdcaf5de0b0db92a4074244.tar.xz
Fixed documentation glitch
Diffstat (limited to 'comm/Channel.cc')
-rw-r--r--comm/Channel.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/comm/Channel.cc b/comm/Channel.cc
index 4e81a16..57dac54 100644
--- a/comm/Channel.cc
+++ b/comm/Channel.cc
@@ -82,7 +82,7 @@ else it is said to be opened.
Because several objects of this class can refer to the same file descriptor,
the destructor closes the file descriptor only if it is the last object referring to this file descriptor.
This is implemented with the help of a reference count, the overloading of \fun{operator =}
-and the definition of the constructor \fun{UchFilDes(UchFilDes &)}.
+and the definition of the constructor \fun{UchFilDes(const UchFilDes\&)}.
All member functions described here are inline for maximum efficiency.
?*/
@@ -263,7 +263,7 @@ UchChannel :: Added (UchBaseMultiplexer& m)
/*?
These virtual functions are called whenever a channel is added to (resp. removed from)
-a multiplexer. The default implementation only store a pointer to the multiplexer (which
+a multiplexer. The default implementation only stores a pointer to the multiplexer (which
can be retrieved through \fun{Getmultiplexer}).
?*/
void
@@ -278,7 +278,7 @@ void
UchChannel :: HandleWrite ()
{
if (! UchChannel::WriteHandler)
- Error (ErrFatal, "UchChannel::HandleWrite", ErrorTable [ErrShouldImplement]);
+ ::Error (ErrFatal, "UchChannel::HandleWrite", ErrorTable [ErrShouldImplement]);
else
(* UchChannel::WriteHandler) (this);
}
@@ -293,14 +293,14 @@ it is called by \fun{HandleRead} (resp. \fun{HandleWrite});
else an error message is output.
These members are public so that they can be assigned directly at any time.
By default they are not set.
-The type of these static members is \typ{^{CH_HANDLER}}:
+The type of these static members is \typ{^{CH\_HANDLER}}:
pointer to void function with one argument of type \typ{UchChannel*}.
?*/
void
UchChannel :: HandleRead ()
{
if (! UchChannel::ReadHandler)
- Error (ErrFatal, "UchChannel::HandleRead", ErrorTable [ErrShouldImplement]);
+ ::Error (ErrFatal, "UchChannel::HandleRead", ErrorTable [ErrShouldImplement]);
else
(* UchChannel::ReadHandler) (this);
}