diff options
Diffstat (limited to 'butl/process')
-rw-r--r-- | butl/process | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/butl/process b/butl/process index e864b53..fc8c1e8 100644 --- a/butl/process +++ b/butl/process @@ -13,9 +13,11 @@ #include <cstdint> // uint32_t #include <system_error> +#include <butl/export> + namespace butl { - struct process_error: std::system_error + struct LIBBUTL_EXPORT process_error: std::system_error { bool child () const {return child_;} @@ -34,7 +36,7 @@ namespace butl bool child_; }; - class process + class LIBBUTL_EXPORT process { public: // Start another process using the specified command line. The default |