moved operator -> here

This commit is contained in:
Jeff Hill
1996-09-04 20:18:27 +00:00
parent 471acea0fc
commit 0f1f7fc30c
2 changed files with 23 additions and 0 deletions

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.1.1.1 1996/06/20 00:28:16 jhill
* ca server installation
*
*
*/
@@ -52,5 +55,13 @@ inline void casAsyncIOI::unlock()
client.unlock();
}
//
// casAsyncIO * casAsyncIOI::operator -> ()
//
inline casAsyncIO * casAsyncIOI::operator -> ()
{
return &this->asyncIO;
}
#endif // casAsyncIOIIL_h

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.2 1996/07/01 19:56:10 jhill
* one last update prior to first release
*
* Revision 1.1.1.1 1996/06/20 00:28:16 jhill
* ca server installation
*
@@ -39,6 +42,14 @@
#ifndef casChannelIIL_h
#define casChannelIIL_h
//
// casChannelI::operator -> ()
//
inline casChannel * casChannelI::operator -> ()
{
return &this->chan;
}
//
// casChannelI::lock()
//
@@ -162,5 +173,6 @@ inline const caResId casChannelI::getSID()
return this->uintId::getId();
}
#endif // casChannelIIL_h