blob: 18dc6d8510192c83139234d036643b29dde15f1b [file] [log] [blame]
/*
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
import { Command } from './command';
export abstract class BaseCommand implements Command {
abstract undo();
abstract redo();
mergePossible( newerCommand: Command ): boolean {
return false;
}
abstract merge( newerCommand: Command): Command;
}