diff options
Diffstat (limited to 'TAO/TAO_IDL/be/be_string.cpp')
-rw-r--r-- | TAO/TAO_IDL/be/be_string.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_string.cpp b/TAO/TAO_IDL/be/be_string.cpp index 18917d3decf..d2dcdd37f61 100644 --- a/TAO/TAO_IDL/be/be_string.cpp +++ b/TAO/TAO_IDL/be/be_string.cpp @@ -157,6 +157,12 @@ be_string::tc_encap_len (void) return this->encap_len_; } +int +be_string::accept (be_visitor *visitor) +{ + return visitor->visit_string (this); +} + // Narrowing IMPL_NARROW_METHODS2 (be_string, AST_String, be_type) IMPL_NARROW_FROM_DECL (be_string) |