~ubuntu-branches/ubuntu/intrepid/gparted/intrepid

« back to all changes in this revision

Viewing changes to include/ext2.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-18 09:24:46 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070518092446-qog6ipxs9ah78q0c
Tags: 0.3.3-2ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/control:
    - Maintainer: Ubuntu Core Developers
      <ubuntu-devel-discuss@lists.ubuntu.com> 
    - don't depend on menu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class ext2 : public FileSystem
28
28
{
29
29
public:
30
 
        FS get_filesystem_support( ) ;
31
 
        void Set_Used_Sectors( Partition & partition ) ;
32
 
        bool Create( const Partition & new_partition, std::vector<OperationDetails> & operation_details ) ;
33
 
        bool Resize( const Partition & partition_new,
34
 
                     std::vector<OperationDetails> & operation_details,
35
 
                     bool fill_partition = false ) ;
36
 
        bool Copy( const Glib::ustring & src_part_path,
 
30
        FS get_filesystem_support() ;
 
31
        void set_used_sectors( Partition & partition ) ;
 
32
        void get_label( Partition & partition ) ;
 
33
        bool create( const Partition & new_partition, OperationDetail & operationdetail ) ;
 
34
        bool resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition = false ) ;
 
35
        bool copy( const Glib::ustring & src_part_path,
37
36
                   const Glib::ustring & dest_part_path,
38
 
                   std::vector<OperationDetails> & operation_details ) ;
39
 
        bool Check_Repair( const Partition & partition, std::vector<OperationDetails> & operation_details ) ;
 
37
                   OperationDetail & operationdetail ) ;
 
38
        bool check_repair( const Partition & partition, OperationDetail & operationdetail ) ;
40
39
};
41
40
 
42
41
} //GParted