X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fdevice.hpp;h=ceca0777118b106a105ae00b499eb6e60b9c380a;hp=612d750940612e70e24e9eb27291590585f709d3;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=b48daed65bff5da5fddc6db11377b8730220865f diff --git a/pv/devices/device.hpp b/pv/devices/device.hpp index 612d7509..ceca0777 100644 --- a/pv/devices/device.hpp +++ b/pv/devices/device.hpp @@ -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 . */ #ifndef PULSEVIEW_PV_DEVICES_DEVICE_HPP @@ -64,7 +63,11 @@ public: virtual std::string display_name( const DeviceManager &device_manager) const = 0; - virtual void create() = 0; + virtual void open() = 0; + + virtual void close() = 0; + + virtual void start(); virtual void run();