summaryrefslogtreecommitdiff
path: root/modules/TAO/TAO_IDL/ast/ast_generator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/TAO/TAO_IDL/ast/ast_generator.cpp')
-rw-r--r--modules/TAO/TAO_IDL/ast/ast_generator.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/TAO/TAO_IDL/ast/ast_generator.cpp b/modules/TAO/TAO_IDL/ast/ast_generator.cpp
index 358f8eee92a..e61bcd69cea 100644
--- a/modules/TAO/TAO_IDL/ast/ast_generator.cpp
+++ b/modules/TAO/TAO_IDL/ast/ast_generator.cpp
@@ -104,6 +104,7 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#include "ast_typedef.h"
#include "ast_native.h"
#include "ast_factory.h"
+#include "ast_finder.h"
#include "utl_identifier.h"
@@ -921,6 +922,17 @@ AST_Generator::create_factory (UTL_ScopedName *n)
return retval;
}
+AST_Finder *
+AST_Generator::create_finder (UTL_ScopedName *n)
+{
+ AST_Finder *retval = 0;
+ ACE_NEW_RETURN (retval,
+ AST_Finder (n),
+ 0);
+
+ return retval;
+}
+
AST_ValueBox *
AST_Generator::create_valuebox (UTL_ScopedName *n,
AST_Type *boxed_type)