summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/RubyUtil.h
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-05-11 17:50:09 -0400
committerBernard Normier <bernard@zeroc.com>2016-05-11 17:50:09 -0400
commitff76da01915482dc5c5bcc693789642882958d64 (patch)
treeb57639e7490f850fbec23c50f159c408689234e5 /cpp/include/Slice/RubyUtil.h
parentcleaning up stream API in C++/Java/JS (diff)
downloadice-ff76da01915482dc5c5bcc693789642882958d64.tar.bz2
ice-ff76da01915482dc5c5bcc693789642882958d64.tar.xz
ice-ff76da01915482dc5c5bcc693789642882958d64.zip
IceUtil and Slice msbuild updates
Diffstat (limited to 'cpp/include/Slice/RubyUtil.h')
-rw-r--r--cpp/include/Slice/RubyUtil.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/include/Slice/RubyUtil.h b/cpp/include/Slice/RubyUtil.h
index c1309539882..3acae195d9c 100644
--- a/cpp/include/Slice/RubyUtil.h
+++ b/cpp/include/Slice/RubyUtil.h
@@ -21,7 +21,7 @@ namespace Ruby
//
// Generate Ruby code for a translation unit.
//
-SLICE_API void generate(const Slice::UnitPtr&, bool, bool, const std::vector<std::string>&, IceUtilInternal::Output&);
+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
@@ -33,20 +33,20 @@ enum IdentStyle
IdentToUpper, // Mapped identifier must begin with an upper-case letter.
IdentToLower // Mapped identifier must begin with a lower-case letter.
};
-SLICE_API std::string fixIdent(const std::string&, IdentStyle);
+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.
//
-SLICE_API std::string getAbsolute(const Slice::ContainedPtr&, IdentStyle, const std::string& = std::string());
+std::string getAbsolute(const Slice::ContainedPtr&, IdentStyle, const std::string& = std::string());
//
// Emit a comment header.
//
-SLICE_API void printHeader(IceUtilInternal::Output&);
+void printHeader(IceUtilInternal::Output&);
-SLICE_API int compile(int, char*[]);
+int compile(int, char*[]);
}
}