lilypond-1.3.52
[lilypond.git] / flowertest / main.cc
blob26aaf3cff991479ce3e9a1e80772ba3952cbcbed
1 #include "flower-test.hh"
2 #include "varray.hh"
4 Array< fptr > *test_arr_p;
6 void reg_test (fptr f)
8 if (!test_arr_p)
9 test_arr_p = new Array<fptr>;
10 test_arr_p->push (f);
13 int
14 main ()
16 if (test_arr_p)
18 for (int i=0; i < test_arr_p->size (); i++)
19 (*test_arr_p)[i] ();