diff --git a/stepmania/src/CommonMetrics.h b/stepmania/src/CommonMetrics.h index 0e4b20dc3d..d3fbe62b66 100644 --- a/stepmania/src/CommonMetrics.h +++ b/stepmania/src/CommonMetrics.h @@ -12,27 +12,30 @@ // // Types // -class ThemeMetricDifficultiesToShow : ThemeMetric +class ThemeMetricDifficultiesToShow : public ThemeMetric { public: + ThemeMetricDifficultiesToShow() { } ThemeMetricDifficultiesToShow( const CString& sGroup, const CString& sName ); void Read(); const vector &GetValue(); private: vector m_v; }; -class ThemeMetricCourseDifficultiesToShow : ThemeMetric +class ThemeMetricCourseDifficultiesToShow : public ThemeMetric { public: + ThemeMetricCourseDifficultiesToShow() { } ThemeMetricCourseDifficultiesToShow( const CString& sGroup, const CString& sName ); void Read(); const vector &GetValue(); private: vector m_v; }; -class ThemeMetricStepsTypesToShow : ThemeMetric +class ThemeMetricStepsTypesToShow : public ThemeMetric { public: + ThemeMetricStepsTypesToShow() { } ThemeMetricStepsTypesToShow( const CString& sGroup, const CString& sName ); void Read(); const vector &GetValue();