libzypp  17.31.31
cdtools.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
13 #ifndef ZYPP_MEDIA_CDTOOLS_H
14 #define ZYPP_MEDIA_CDTOOLS_H
15 
16 #include <string>
17 
18 namespace zypp::media {
19 
20  class CDTools
21  {
22  public:
23  static bool openTray( const std::string & device_r );
24  static bool closeTray( const std::string & device_r );
25  };
26 
27 }
28 
29 #endif
static bool closeTray(const std::string &device_r)
Definition: cdtools.cc:86
static bool openTray(const std::string &device_r)
Definition: cdtools.cc:33