diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-25 08:56:48 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-25 08:56:48 +0200 |
commit | 098559ca3552ebd8f80a6d28254f4fa58913b751 (patch) | |
tree | 1eb6f65b492d3217a380a909f6810a5f3e00cc37 /butl/char-scanner | |
parent | 6c8e3f09c185d7fa4664ccd9e5c4f623a17b84cc (diff) |
Add DLL export/import support
Diffstat (limited to 'butl/char-scanner')
-rw-r--r-- | butl/char-scanner | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/butl/char-scanner b/butl/char-scanner index d50745e..a3b1ad7 100644 --- a/butl/char-scanner +++ b/butl/char-scanner @@ -9,12 +9,14 @@ #include <iosfwd> #include <cstdint> // uint64_t +#include <butl/export> + namespace butl { // Low-level character stream scanner. Normally used as a base for // higher-level lexers. // - class char_scanner + class LIBBUTL_EXPORT char_scanner { public: char_scanner (std::istream& is): is_ (is) {} |