menu: added new Keywords tag to .desktop files
[barry.git] / gui / src / DeviceBus.h
blob0727dd0ca4a2f84df1deab3a82bf1a5f40df0388
1 ///
2 /// \file DeviceBus.h
3 /// Bus for manipulating devices
4 ///
6 /*
7 Copyright (C) 2007-2013, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRYBACKUP_DEVICEBUS_H__
23 #define __BARRYBACKUP_DEVICEBUS_H__
25 #include <barry/barry.h>
26 #include "DeviceIface.h"
28 class DeviceBus
30 private:
31 std::auto_ptr<Barry::Probe> m_probe;
33 public:
34 DeviceBus();
35 ~DeviceBus();
37 void Probe();
38 unsigned int ProbeCount();
39 Device Get(unsigned int index);
41 int GetFailCount() const;
42 const std::string& GetFailMsg(int index) const;
45 #endif