Renamed Insert to Processor and Redirect to IOProcessor.
[ardour.git] / libs / ardour / ardour / track.h
index 5d87a13886b9df601ce3f0e469aace58e9df11c5..06ce39889642b70ee7e64ca2bcf53d2442dbbaeb 100644 (file)
@@ -103,14 +103,14 @@ class Track : public Route
        TrackMode   _mode;
 
        //private: (FIXME)
-       struct FreezeRecordInsertInfo {
-           FreezeRecordInsertInfo(XMLNode& st, boost::shared_ptr<Insert> ins
-                   : state (st), insert (ins) {}
-
-           XMLNode                   state;
-           boost::shared_ptr<Insert> insert;
-           PBD::ID                   id;
-           UndoAction                memento;
+       struct FreezeRecordProcessorInfo {
+           FreezeRecordProcessorInfo(XMLNode& st, boost::shared_ptr<Processor> proc
+                   : state (st), processor (proc) {}
+
+           XMLNode                      state;
+           boost::shared_ptr<Processor> processor;
+           PBD::ID                      id;
+           UndoAction                   memento;
        };
 
        struct FreezeRecord {
@@ -120,10 +120,10 @@ class Track : public Route
 
            ~FreezeRecord();
 
-           boost::shared_ptr<Playlist>     playlist;
-           vector<FreezeRecordInsertInfo*> insert_info;
-           bool                            have_mementos;
-           FreezeState                     state;
+           boost::shared_ptr<Playlist>        playlist;
+           vector<FreezeRecordProcessorInfo*> processor_info;
+           bool                               have_mementos;
+           FreezeState                        state;
        };
 
        struct RecEnableControllable : public PBD::Controllable {
@@ -135,11 +135,6 @@ class Track : public Route
            Track& track;
        };
 
-       //virtual void diskstream_record_enable_changed (void *src) = 0;
-       //virtual void diskstream_input_channel_changed (void *src) = 0;
-
-       //virtual void input_change_handler (void *src) = 0;
-
        virtual void set_state_part_two () = 0;
 
        FreezeRecord          _freeze_record;