summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/RubyUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Slice/RubyUtil.h')
-rw-r--r--cpp/include/Slice/RubyUtil.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/cpp/include/Slice/RubyUtil.h b/cpp/include/Slice/RubyUtil.h
deleted file mode 100644
index 3acae195d9c..00000000000
--- a/cpp/include/Slice/RubyUtil.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef SLICE_RUBY_UTIL_H
-#define SLICE_RUBY_UTIL_H
-
-#include <Slice/Parser.h>
-#include <IceUtil/OutputUtil.h>
-
-namespace Slice
-{
-namespace Ruby
-{
-
-//
-// Generate Ruby code for a translation unit.
-//
-void generate(const Slice::UnitPtr&, bool, bool, const std::vector<std::string>&, IceUtilInternal::Output&);
-
-//
-// Check the given identifier against Ruby's list of reserved words. If it matches
-// a reserved word, then an escaped version is returned with a leading underscore.
-//
-enum IdentStyle
-{
- IdentNormal,
- IdentToUpper, // Mapped identifier must begin with an upper-case letter.
- IdentToLower // Mapped identifier must begin with a lower-case letter.
-};
-std::string fixIdent(const std::string&, IdentStyle);
-
-//
-// Get the fully-qualified name of the given definition. If a prefix is provided,
-// it is prepended to the definition's unqualified name.
-//
-std::string getAbsolute(const Slice::ContainedPtr&, IdentStyle, const std::string& = std::string());
-
-//
-// Emit a comment header.
-//
-void printHeader(IceUtilInternal::Output&);
-
-int compile(int, char*[]);
-
-}
-}
-
-#endif