Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00041
00042 #ifndef COMMAND_H_
00043 #define COMMAND_H_
00044
00045 #include <pcl/apps/point_cloud_editor/localTypes.h>
00046
00049 class Command
00050 {
00051 public:
00053 virtual ~Command ()
00054 {
00055 }
00056
00057 protected:
00060 friend class CommandQueue;
00061
00065 Command () : has_undo_(true)
00066 {
00067 }
00068
00070 inline
00071 bool
00072 hasUndo () const
00073 {
00074 return (has_undo_);
00075 }
00076
00078 virtual
00079 void
00080 execute () = 0;
00081
00083 virtual
00084 void
00085 undo () = 0;
00086
00088 bool has_undo_;
00089
00090 private:
00092 Command (const Command&)
00093 {
00094 assert(false);
00095 }
00096
00098 Command&
00099 operator= (const Command&)
00100 {
00101 assert(false); return (*this);
00102 }
00103 };
00104 #endif //COMMAND_H_