summaryrefslogtreecommitdiff
path: root/pscore.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pscore.cc')
-rw-r--r--pscore.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/pscore.cc b/pscore.cc
index e1c8a7204a..3f6f289d26 100644
--- a/pscore.cc
+++ b/pscore.cc
@@ -50,6 +50,7 @@ PScore::typeset_item(Item *i, PCol *c, PStaff *s, int breakstat)
its.bottom().add(i);
s->add(i);
c->add(i);
+ i->preprocess();
}
void
@@ -154,3 +155,20 @@ PScore::print() const
#endif
}
+void
+PScore::preprocess()
+{
+#if 0
+ for (PCursor<Item*> ic(its); ic.ok(); ic++){
+ ic->preprocess();
+ }
+#endif
+}
+
+void
+PScore::postprocess()
+{
+ for (PCursor<Item*> ic(its); ic.ok(); ic++){
+ ic->postprocess();
+ }
+}