Skip to content
Snippets Groups Projects
Commit dfdf0949 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'patch-1'


858d5edd Encoding: Export CommandLineArguments from shared library
04e24b2b ConsoleBuf: Remove export macro from BasicConsoleBuf template
ce44c58a FStream: Export ReadBOM() from shared library

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !16
parents 5da8cfe0 858d5edd
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,7 @@ namespace @KWSYS_NAMESPACE@ {
#if defined(_WIN32)
template <class CharT, class Traits = std::char_traits<CharT> >
class @KWSYS_NAMESPACE@_EXPORT BasicConsoleBuf
: public std::basic_streambuf<CharT, Traits>
class BasicConsoleBuf : public std::basic_streambuf<CharT, Traits>
{
public:
typedef typename Traits::int_type int_type;
......
......@@ -13,7 +13,7 @@ class @KWSYS_NAMESPACE@_EXPORT Encoding
{
public:
// Container class for argc/argv.
class CommandLineArguments
class @KWSYS_NAMESPACE@_EXPORT CommandLineArguments
{
public:
// On Windows, get the program command line arguments
......
......@@ -269,7 +269,7 @@ enum BOM
// If a BOM exists, the stream is advanced to after the BOM.
// This function requires a seekable stream (but not a relative
// seekable stream).
BOM ReadBOM(std::istream& in);
@KWSYS_NAMESPACE@_EXPORT BOM ReadBOM(std::istream& in);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment