NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / pbd / pbd / command.h
index 4547b779fb4e736300305017012e6246dfa66ba9..337140e786f2af0ccb16dd51e6c9246069bafe8f 100644 (file)
@@ -1,5 +1,5 @@
 
-/* 
+/*
     Copyright (C) 2006 Paul Davis
     Author: Hans Fugal
 
@@ -34,13 +34,13 @@ public:
        virtual ~Command() { /* NOTE: derived classes must call drop_references() */ }
 
        virtual void operator() () = 0;
-       
+
        void set_name (const std::string& str) { _name = str; }
        const std::string& name() const { return _name; }
 
        virtual void undo() = 0;
        virtual void redo() { (*this)(); }
-       
+
        virtual XMLNode &get_state();
        virtual int set_state(const XMLNode&, int /*version*/) { /* noop */ return 0; }