00001
00002
00003
00004
00005
00006
00007
00008
00012 #ifndef ZYPP_MEDIA_MEDIACIFS_H
00013 #define ZYPP_MEDIA_MEDIACIFS_H
00014
00015 #include "zypp/media/MediaSMB.h"
00016
00017 namespace zypp {
00018 namespace media {
00019
00021
00022
00030 class MediaCIFS : public MediaSMB {
00031
00032 public:
00033
00034 MediaCIFS( const Url& url_r,
00035 const Pathname & attach_point_hint_r )
00036 : MediaSMB( url_r, attach_point_hint_r )
00037 {
00038 mountAsCIFS();
00039 }
00040 };
00041
00042 }
00043 }
00044
00046
00047 #endif // ZYPP_MEDIA_MEDIACIFS_H