Source: Reiser_Partition.h
|
|
|
|
// -*- c++ -*-
/*
* Maintainer: Arvin Schnell
*/
#ifndef Reiser_Partition_h
#define Reiser_Partition_h
#include "Partition.h"
/**
* @short Interface to the mkreiserfs program
*/
class Reiser_Partition : public Partition
{
public:
/**
* Create an new instance.
*/
Reiser_Partition (string partition_name);
/**
* Read progress indicator of the mkreiserfs process.
*/
bool get_progress_status (double &percent);
/**
* Run mkreiserfs with the specified arguments and handle stderr.
*/
void format (YCPList options,
ExternalProgram::Stderr_Disposition stderr_disp =
ExternalProgram::Stderr_To_Stdout);
};
#endif // Reiser_Partition_h
| Generated by: root on D60 on Mon Oct 20 16:16:32 2003, using kdoc 2.0a54. |