/*========================================================================= Library: CTK Copyright (c) Kitware Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.commontk.org/LICENSE Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ // Qt includes #include #include // CTK includes #include #include // STD includes #include #include //----------------------------------------------------------------------------- class ctkDummyHistogram: public ctkHistogram { public: ctkDummyHistogram(QObject* parent = 0):ctkHistogram(parent){} virtual ~ctkDummyHistogram(){} virtual ctkControlPoint* controlPoint(int index)const { Q_UNUSED(index); return 0; } virtual QVariant value(qreal pos)const { Q_UNUSED(pos); return 0.; } virtual int count()const { return 0; } virtual void range(qreal& minRange, qreal& maxRange)const { Q_UNUSED(minRange); Q_UNUSED(maxRange); minRange = 0.; maxRange = 0.; } virtual QVariant minValue()const { return 0; } virtual QVariant maxValue()const { return 0; } virtual void removeControlPoint( qreal pos ) { Q_UNUSED(pos); } virtual void build() { } protected: }; int ctkHistogramTest1(int argc, char * argv [] ) { Q_UNUSED(argc); Q_UNUSED(argv); ctkDummyHistogram dummyHistogram; if (!dummyHistogram.isDiscrete()) { std::cerr << "Line : " << __LINE__ << " - Problem with ctkHistogram::isDiscrete" <