summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS2/HTTPU/http_status.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS2/HTTPU/http_status.inl')
-rw-r--r--ACE/apps/JAWS2/HTTPU/http_status.inl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ACE/apps/JAWS2/HTTPU/http_status.inl b/ACE/apps/JAWS2/HTTPU/http_status.inl
new file mode 100644
index 00000000000..0247ddeb738
--- /dev/null
+++ b/ACE/apps/JAWS2/HTTPU/http_status.inl
@@ -0,0 +1,19 @@
+// -*- c++ -*-
+// $Id$
+
+#if !defined (ACE_HAS_INLINED_OSCALLS)
+# undef ACE_INLINE
+# define ACE_INLINE
+#endif /* ACE_HAS_INLINED_OSCALLS */
+
+ACE_INLINE
+HTTP_SCode_Node::operator int (void) const
+{
+ return this->code_;
+}
+
+ACE_INLINE
+HTTP_SCode_Node::operator const char * (void) const
+{
+ return this->code_str_;
+}