![]() |
User Manual, Developers Guide and API Documentation |
![]() |
00001 /****************************************************************************** 00002 * DataHandler for Transport Layer Connections Interface * 00003 * __________________________________________________________________________ * 00004 * * 00005 * Copyright (C) 2005 * 00006 * Lehrstuhl fuer Kommunikationsnetze (ComNets) * 00007 * Kopernikusstr. 16, D-52074 Aachen, Germany * 00008 * phone: ++49-241-80-27910 (phone), fax: ++49-241-80-22242 * 00009 * email: wns@comnets.rwth-aachen.de, www: http://wns.comnets.rwth-aachen.de/ * 00010 ******************************************************************************/ 00011 00012 #ifndef WNS_SERVICE_TL_DATAHANDLER_HPP 00013 #define WNS_SERVICE_TL_DATAHANDLER_HPP 00014 00015 #include <WNS/osi/PDU.hpp> 00016 00017 namespace wns { namespace service { namespace tl { 00018 00025 class DataHandler 00026 { 00027 public: 00031 virtual 00032 ~DataHandler() 00033 {} 00034 00040 virtual void 00041 onData(const wns::osi::PDUPtr& _pdu) = 0; 00042 }; 00043 } // tl 00044 } // service 00045 } // wns 00046 00047 00048 #endif //WNS_SERVICE_TL_DATAHANDLER_HPP 00049 00050 /* 00051 Local Variables: 00052 mode: c++ 00053 fill-column: 80 00054 c-basic-offset: 8 00055 c-comment-only-line-offset: 0 00056 c-tab-always-indent: t 00057 indent-tabs-mode: t 00058 tab-width: 8 00059 End: 00060 */
1.5.5