add required virtual method for SrcFileSource
[ardour.git] / libs / pbd / test / scalar_properties.h
index a3719fbe130a556a4f206f80f2eba2baeb232ad3..6175aeacfe0720d7b12412083be5740e63ea42b0 100644 (file)
@@ -1,15 +1,19 @@
 #include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
 #include "pbd/properties.h"
 
 class ScalarPropertiesTest : public CppUnit::TestFixture
 {
-public:
        CPPUNIT_TEST_SUITE (ScalarPropertiesTest);
        CPPUNIT_TEST (testBasic);
        CPPUNIT_TEST_SUITE_END ();
 
+public:
+       ScalarPropertiesTest ();
        void testBasic ();
 
+       static void make_property_quarks ();
+       
 private:
-       PBD::Property<int> _property;
+       PBD::Property<int> _fred;
 };