summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/INet/Response.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/ace/INet/Response.h')
-rw-r--r--ACE/protocols/ace/INet/Response.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/ACE/protocols/ace/INet/Response.h b/ACE/protocols/ace/INet/Response.h
new file mode 100644
index 00000000000..52e21dc36bb
--- /dev/null
+++ b/ACE/protocols/ace/INet/Response.h
@@ -0,0 +1,42 @@
+// $Id$
+
+/**
+ * @file Response.h
+ *
+ * @author Martin Corino <mcorino@remedy.nl>
+ */
+
+#ifndef ACE_INET_RESPONSE_H
+#define ACE_INET_RESPONSE_H
+
+#include /**/ "ace/pre.h"
+
+#include "ace/INet/INet_Export.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace ACE
+ {
+ namespace INet
+ {
+
+ /**
+ * @class ACE_INet_Response
+ *
+ * @brief Base class for responses.
+ *
+ */
+ class ACE_INET_Export Response
+ {
+ public:
+ Response ();
+ virtual ~Response ();
+ };
+
+ }
+ }
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+#endif /* ACE_INET_RESPONSE_H */