summaryrefslogtreecommitdiff
path: root/TAO/tao/SArgument.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/SArgument.h')
-rw-r--r--TAO/tao/SArgument.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/TAO/tao/SArgument.h b/TAO/tao/SArgument.h
deleted file mode 100644
index 46c98f611df..00000000000
--- a/TAO/tao/SArgument.h
+++ /dev/null
@@ -1,50 +0,0 @@
-// This may look like C, but it's really -*- C++ -*-
-
-//=============================================================================
-/**
- * @file SArgument_Base.h
- *
- * $Id$
- *
- * @authors Jeff Parsons and Carlos O'Ryan
- */
-//=============================================================================
-
-
-#ifndef TAO_SARGUMENT_H
-#define TAO_SARGUMENT_H
-
-#include "ace/pre.h"
-
-#include "tao/corbafwd.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-namespace TAO
-{
- /**
- * @class SArgument
- *
- * @brief Base class for all IDL operation skeleton parameter wrappers.
- */
- class SArgument
- {
- public:
- virtual CORBA::Boolean marshal (TAO_OutputCDR &)
- {
- return 0;
- }
-
- virtual CORBA::Boolean unmarshal (TAO_InputCDR &)
- {
- return 0;
- }
- };
-};
-
-#include "ace/post.h"
-
-#endif /* TAO_SARGUMENT_H */
-