2 * Copyright 2006, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 * Stephan Aßmus <superstippi@gmx.de>
9 #ifndef CLEAN_UP_PATH_COMMAND_H
10 #define CLEAN_UP_PATH_COMMAND_H
12 #include "PathCommand.h"
13 #include "VectorPath.h"
15 class CleanUpPathCommand
: public PathCommand
{
17 CleanUpPathCommand(VectorPath
* path
);
18 virtual ~CleanUpPathCommand();
20 virtual status_t
Perform();
21 virtual status_t
Undo();
23 virtual void GetName(BString
& name
);
26 VectorPath fOriginalPath
;
29 #endif // CLEAN_UP_PATH_COMMAND_H