summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-15 04:19:24 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-15 04:19:24 +0000
commit28e7508fb59246fff65326a707fe1133d9dcf000 (patch)
tree3a5cb3af64ed7946d9c20407c632402d875926c5 /examples
parentfbc1ac1e430fa97c3f989cfd207823478cac7b85 (diff)
downloadATCD-28e7508fb59246fff65326a707fe1133d9dcf000.tar.gz
removed ACE_INLINEs from .cpp files
Diffstat (limited to 'examples')
-rw-r--r--examples/ASX/Event_Server/Event_Server/Peer_Router.cpp10
-rw-r--r--examples/ASX/UPIPE_Event_Server/Peer_Router.cpp10
2 files changed, 10 insertions, 10 deletions
diff --git a/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp b/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
index eb7e6b3cd61..ebe56b2ff9c 100644
--- a/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
+++ b/examples/ASX/Event_Server/Event_Server/Peer_Router.cpp
@@ -209,14 +209,14 @@ Peer_Router<PH, PK>::~Peer_Router (void)
{
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::fini (void)
{
delete this->acceptor_;
return 0;
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::control (ACE_Message_Block *mb)
{
ACE_IO_Cntl_Msg *ioc = (ACE_IO_Cntl_Msg *) mb->rd_ptr ();
@@ -234,20 +234,20 @@ Peer_Router<PH, PK>::control (ACE_Message_Block *mb)
return 0;
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::unbind_peer (PK key)
{
return this->peer_map_.unbind (key);
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::bind_peer (PK key, Peer_Handler<Peer_Router<PH, PK>, PK> *ph)
{
PH *peer_handler = (PH *) ph;
return this->peer_map_.bind (key, peer_handler);
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::init (int argc, char *argv[])
{
this->acceptor_ = new ACCEPTOR (this);
diff --git a/examples/ASX/UPIPE_Event_Server/Peer_Router.cpp b/examples/ASX/UPIPE_Event_Server/Peer_Router.cpp
index 639959aefd1..23d9f6c7a35 100644
--- a/examples/ASX/UPIPE_Event_Server/Peer_Router.cpp
+++ b/examples/ASX/UPIPE_Event_Server/Peer_Router.cpp
@@ -204,14 +204,14 @@ Peer_Router<PH, PK>::~Peer_Router (void)
{
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::fini (void)
{
delete this->acceptor_;
return 0;
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::control (ACE_Message_Block *mb)
{
ACE_IO_Cntl_Msg *ioc = (ACE_IO_Cntl_Msg *) mb->rd_ptr ();
@@ -229,20 +229,20 @@ Peer_Router<PH, PK>::control (ACE_Message_Block *mb)
return 0;
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::unbind_peer (PK key)
{
return this->peer_map_.unbind (key);
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::bind_peer (PK key, Peer_Handler<Peer_Router<PH, PK>, PK> *ph)
{
PH *peer_handler = (PH *) ph;
return this->peer_map_.bind (key, peer_handler);
}
-template <class PH, class PK> ACE_INLINE int
+template <class PH, class PK> int
Peer_Router<PH, PK>::init (int argc, char *argv[])
{
this->acceptor_ = new Acceptor_Factory <PH, PK> (this);