2006-03-24 19:08:41 +00:00
|
|
|
/* Copyright (C) 2004 Bart 'plors' Hakvoort
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2014-01-23 10:59:48 +00:00
|
|
|
* GNU General Public License for more details.
|
2006-03-24 19:08:41 +00:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 10:59:48 +00:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2006-03-24 19:08:41 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-27 11:20:16 +00:00
|
|
|
#ifndef GPARTED_OPERATIONFORMAT_H
|
|
|
|
#define GPARTED_OPERATIONFORMAT_H
|
2006-03-24 19:08:41 +00:00
|
|
|
|
2016-10-18 22:45:28 +00:00
|
|
|
#include "Operation.h"
|
|
|
|
#include "Partition.h"
|
|
|
|
#include "PartitionVector.h"
|
2006-03-24 19:08:41 +00:00
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class OperationFormat : public Operation
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OperationFormat( const Device & device,
|
|
|
|
const Partition & partition_orig,
|
|
|
|
const Partition & partition_new ) ;
|
2015-12-21 14:27:21 +00:00
|
|
|
virtual ~OperationFormat();
|
2015-05-23 19:22:37 +00:00
|
|
|
|
|
|
|
void apply_to_visual( PartitionVector & partitions );
|
2006-03-24 19:08:41 +00:00
|
|
|
|
|
|
|
private:
|
2015-09-20 09:50:57 +00:00
|
|
|
OperationFormat( const OperationFormat & src ); // Not implemented copy constructor
|
|
|
|
OperationFormat & operator=( const OperationFormat & rhs ); // Not implemented copy assignment operator
|
|
|
|
|
2006-03-24 19:08:41 +00:00
|
|
|
void create_description() ;
|
2015-09-12 13:59:40 +00:00
|
|
|
bool merge_operations( const Operation & candidate );
|
2006-03-24 19:08:41 +00:00
|
|
|
} ;
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
2013-05-27 11:20:16 +00:00
|
|
|
#endif /* GPARTED_OPERATIONFORMAT_H */
|