ProcMounts.h

Go to the documentation of this file.
00001 #ifndef PROC_MOUNTS_H
00002 #define PROC_MOUNTS_H
00003 
00004 #include <string>
00005 #include <list>
00006 #include <map>
00007 
00008 #include "y2storage/EtcFstab.h"
00009 
00010 namespace storage
00011 {
00012 class Storage;
00013 
00014 class ProcMounts 
00015     {
00016     public:
00017         ProcMounts( Storage * const s );
00018         string getMount( const string& Dev ) const;
00019         string getMount( const std::list<string>& dl ) const;
00020         std::map<string,string> allMounts() const;
00021         void getEntries( std::list<FstabEntry>& l ) const;
00022     protected:
00023         std::map<string,FstabEntry> co;
00024     };
00025 
00026 }
00027 
00028 #endif

Generated on Wed Apr 30 15:02:08 2008 for yast2-storage by  doxygen 1.4.6