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