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.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/TAO/TAO_IDL/ast/ast_generator.cpp b/modules/TAO/TAO_IDL/ast/ast_generator.cpp
index 57ff5e36610..0a1f2f1f01b 100644
--- a/modules/TAO/TAO_IDL/ast/ast_generator.cpp
+++ b/modules/TAO/TAO_IDL/ast/ast_generator.cpp
@@ -1123,3 +1123,14 @@ AST_Generator::create_instantiated_connector (
return retval;
}
+AST_Type *
+AST_Generator::create_placeholder (UTL_ScopedName *n)
+{
+ AST_Type *retval = 0;
+ ACE_NEW_RETURN (retval,
+ AST_Type (AST_Decl::NT_type, n),
+ 0);
+
+ return retval;
+}
+