btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / apps / icon-o-matic / shape / commands / CleanUpPathCommand.h
blobcbc565d65b63988e08cdbe5fc02ec4ba1972476a
1 /*
2 * Copyright 2006, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Stephan Aßmus <superstippi@gmx.de>
7 */
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 {
16 public:
17 CleanUpPathCommand(VectorPath* path);
18 virtual ~CleanUpPathCommand();
20 virtual status_t Perform();
21 virtual status_t Undo();
23 virtual void GetName(BString& name);
25 private:
26 VectorPath fOriginalPath;
29 #endif // CLEAN_UP_PATH_COMMAND_H