1 /* 2 * Copyright 2006, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 9 #ifndef REVERSE_PATH_COMMAND_H 10 #define REVERSE_PATH_COMMAND_H 11 12 #include "PathCommand.h" 13 14 class ReversePathCommand : public PathCommand { 15 public: 16 ReversePathCommand(VectorPath* path); 17 virtual ~ReversePathCommand(); 18 19 virtual status_t Perform(); 20 virtual status_t Undo(); 21 22 virtual void GetName(BString& name); 23 }; 24 25 #endif // REVERSE_PATH_COMMAND_H 26