summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_visitor_operation/argument.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_operation/argument.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h b/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h
index 320e7a9aff1..08e41106e3f 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_operation/argument.h
@@ -26,7 +26,7 @@
// generic operation visitor for docall, upcall, pre/post
// ************************************************************
-class be_visitor_operation_argument : public be_visitor_operation
+class be_visitor_operation_argument : public be_visitor_scope
{
//
// = TITLE
@@ -43,13 +43,13 @@ public:
~be_visitor_operation_argument (void);
// destructor
- virtual int post_process (be_decl *);
+ int post_process (be_decl *);
// stuff to o/p after each element of the scope is handled
- virtual int visit_operation (be_operation *node);
+ int visit_operation (be_operation *node);
// visit the operation
- virtual int visit_argument (be_argument *node);
+ int visit_argument (be_argument *node);
// visit argument
};