00001 // $Id: Request.h 90737 2010-06-21 09:46:14Z mcorino $ 00002 00003 /** 00004 * @file Request.h 00005 * 00006 * @author Martin Corino <mcorino@remedy.nl> 00007 */ 00008 00009 #ifndef ACE_INET_REQUEST_H 00010 #define ACE_INET_REQUEST_H 00011 00012 #include /**/ "ace/pre.h" 00013 00014 #include "ace/INet/INet_Export.h" 00015 00016 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00017 00018 namespace ACE 00019 { 00020 namespace INet 00021 { 00022 00023 /** 00024 * @class ACE_INet_Request 00025 * 00026 * @brief Base class for requests. 00027 * 00028 */ 00029 class ACE_INET_Export Request 00030 { 00031 public: 00032 Request (); 00033 virtual ~Request (); 00034 }; 00035 00036 } 00037 } 00038 00039 ACE_END_VERSIONED_NAMESPACE_DECL 00040 00041 #include /**/ "ace/post.h" 00042 #endif /* ACE_INET_REQUEST_H */