diff data/model/TabularModel.h @ 427:72ec275e458b

* Basic implementation of add and remove point in data editor * Improve resilience of frame - real-time - frame round-trip conversions
author Chris Cannam
date Mon, 16 Jun 2008 14:48:42 +0000
parents f5e8f12d2e58
children 957e6a5c8495
line wrap: on
line diff
--- a/data/model/TabularModel.h	Mon Jun 16 07:55:35 2008 +0000
+++ b/data/model/TabularModel.h	Mon Jun 16 14:48:42 2008 +0000
@@ -51,6 +51,8 @@
 
     virtual bool isEditable() const { return false; }
     virtual Command *getSetDataCommand(int /* row */, int /* column */, const QVariant &, int /* role */) { return 0; }
+    virtual Command *getInsertRowCommand(int /* beforeRow */) { return 0; }
+    virtual Command *getRemoveRowCommand(int /* row */) { return 0; }
 };
 
 #endif