X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevicemanager.cpp;h=a51148b1d3ad2851a55888749312cb12b837e523;hp=41f2ae9c5f5bc6346aff24b895062d1e8d51ae53;hb=aca9aa834c742ba70f49d1ac3eb2d1e02e759416;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd diff --git a/pv/devicemanager.cpp b/pv/devicemanager.cpp index 41f2ae9..a51148b 100644 --- a/pv/devicemanager.cpp +++ b/pv/devicemanager.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include "devicemanager.hpp" @@ -23,38 +22,29 @@ #include #include -#include #include +#include #include -#include #include -#include #include #include -using boost::algorithm::join; - using std::bind; -using std::dynamic_pointer_cast; using std::list; using std::map; using std::placeholders::_1; using std::placeholders::_2; -using std::remove_if; -using std::runtime_error; using std::shared_ptr; using std::string; -using std::vector; using Glib::VariantBase; using sigrok::ConfigKey; using sigrok::Context; using sigrok::Driver; -using sigrok::SessionDevice; namespace pv { @@ -65,7 +55,7 @@ DeviceManager::DeviceManager(shared_ptr context) : driver_scan(entry.second, map()); } -const std::shared_ptr& DeviceManager::context() const +const shared_ptr& DeviceManager::context() const { return context_; }