comparison base/PropertyContainer.cpp @ 0:da6937383da8

initial import
author Chris Cannam
date Tue, 10 Jan 2006 16:33:16 +0000
parents
children d86891498eef
comparison
equal deleted inserted replaced
-1:000000000000 0:da6937383da8
1 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 A waveform viewer and audio annotation editor.
5 Chris Cannam, Queen Mary University of London, 2005
6
7 This is experimental software. Not for distribution.
8 */
9
10 #include "PropertyContainer.h"
11
12 PropertyContainer::PropertyList
13 PropertyContainer::getProperties() const
14 {
15 return PropertyList();
16 }
17
18 PropertyContainer::PropertyType
19 PropertyContainer::getPropertyType(const PropertyName &) const
20 {
21 return InvalidProperty;
22 }
23
24 QString
25 PropertyContainer::getPropertyGroupName(const PropertyName &) const
26 {
27 return QString();
28 }
29
30 int
31 PropertyContainer::getPropertyRangeAndValue(const PropertyName &, int *min, int *max) const
32 {
33 if (min) *min = 0;
34 if (max) *max = 0;
35 return 0;
36 }
37
38 QString
39 PropertyContainer::getPropertyValueLabel(const PropertyName &, int) const
40 {
41 return QString();
42 }
43
44 void
45 PropertyContainer::setProperty(const PropertyName &, int)
46 {
47 }
48