diff options
author | Alan Conway <aconway@apache.org> | 2007-08-14 16:15:26 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-08-14 16:15:26 +0000 |
commit | aa0e4df68168895d4a55d687e6acd239eccd2e69 (patch) | |
tree | 63029a1fbef01df25a84dedb618d7235ff734b2b /qpid/cpp/rubygen/cppgen.rb | |
parent | 284aec62741c7dc069c8e7199a5ce3bf61c277ff (diff) | |
download | qpid-python-aa0e4df68168895d4a55d687e6acd239eccd2e69.tar.gz |
Removed unused types: RequestId, ResponseId, MethodContext.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@565821 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/rubygen/cppgen.rb')
-rwxr-xr-x | qpid/cpp/rubygen/cppgen.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qpid/cpp/rubygen/cppgen.rb b/qpid/cpp/rubygen/cppgen.rb index 64987e763f..724634e514 100755 --- a/qpid/cpp/rubygen/cppgen.rb +++ b/qpid/cpp/rubygen/cppgen.rb @@ -172,6 +172,9 @@ class CppGen < Generator def variantl(types) "boost::variant<#{types.join(", \n")}>"; end def blank_variant(types) variant(["boost::blank"]+types); end def tuple(types) "boost::tuple<#{types.join(', ')}>"; end - + + def public() outdent { genl "public:" } end + def private() outdent { genl "private:" } end + def protected() outdent { genl "protected:" } end end |