root/src/apps/icon-o-matic/shape/commands/ReversePathCommand.h
/*
 * Copyright 2006, Haiku. All rights reserved.
 * Distributed under the terms of the MIT License.
 *
 * Authors:
 *              Stephan Aßmus <superstippi@gmx.de>
 */

#ifndef REVERSE_PATH_COMMAND_H
#define REVERSE_PATH_COMMAND_H

#include "PathCommand.h"

class ReversePathCommand : public PathCommand {
 public:
                                                                ReversePathCommand(VectorPath* path);
        virtual                                         ~ReversePathCommand();

        virtual status_t                        Perform();
        virtual status_t                        Undo();

        virtual void                            GetName(BString& name);
};

#endif // REVERSE_PATH_COMMAND_H