|
|
// -*- c++ -*- // Maintainer: fehr@suse.de #ifndef FdiskAgent_h #define FdiskAgent_h #include#include #include /** * @short SCR Agent for access to fdisk */ class FdiskAgent : public SCRAgent { public: FdiskAgent(); ~FdiskAgent(); /** * Reads data. * @param path Specifies what part of the subtree should * be read. The path is specified _relatively_ to Root()! */ YCPValue Read(const YCPPath& path, const YCPValue& arg = YCPNull()); /** * Writes data. */ YCPValue Write(const YCPPath& path, const YCPValue& value, const YCPValue& arg = YCPNull()); /** * Get a list of all subtrees. */ YCPValue Dir(const YCPPath& path); }; #endif // FdiskAgent_h
| Generated by: root on D60 on Mon Oct 20 16:15:28 2003, using kdoc 2.0a54. |