summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-04-23 18:44:37 -0700
committerJosh Blum <josh@joshknows.com>2012-04-23 18:44:54 -0700
commit0a4a861afec15b59da8cbc4a3ceadbdfc266d4ec (patch)
treed3dadd8bf1b1a24bce732a60a0edd1ee82daf1ee
parent4286d07d7a31812ba16d67d3c7e0c05a27e444cb (diff)
downloaduhd-0a4a861afec15b59da8cbc4a3ceadbdfc266d4ec.tar.gz
uhd-0a4a861afec15b59da8cbc4a3ceadbdfc266d4ec.tar.bz2
uhd-0a4a861afec15b59da8cbc4a3ceadbdfc266d4ec.zip
uhd: fix missing API export for tasks.hpp
-rw-r--r--host/include/uhd/utils/tasks.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/utils/tasks.hpp b/host/include/uhd/utils/tasks.hpp
index 38b2bddf0..dcb003e39 100644
--- a/host/include/uhd/utils/tasks.hpp
+++ b/host/include/uhd/utils/tasks.hpp
@@ -1,5 +1,5 @@
//
-// Copyright 2011 Ettus Research LLC
+// Copyright 2011-2012 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -25,7 +25,7 @@
namespace uhd{
- class task : boost::noncopyable{
+ class UHD_API task : boost::noncopyable{
public:
typedef boost::shared_ptr<task> sptr;
typedef boost::function<void(void)> task_fcn_type;