1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/*=========================================================================
Program: ParaView
Module: vtkSMDoubleRangeDomain.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkSMDoubleRangeDomain
* @brief type specific extension to
* vtkSMRangeDomainTemplate for doubles.
*
* vtkSMDoubleRangeDomain is a type-specific specialization for
* vtkSMRangeDomainTemplate.
*/
#ifndef vtkSMDoubleRangeDomain_h
#define vtkSMDoubleRangeDomain_h
// Tell the template header how to give our superclass a DLL interface.
#if !defined(vtkSMDoubleRangeDomain_cxx)
#define VTK_DATA_ARRAY_TEMPLATE_TYPE double
#endif
#include "vtkPVServerManagerCoreModule.h" //needed for exports
#include "vtkSMDomain.h"
#include "vtkSMRangeDomainTemplate.h" // Read superclass
// Fake the superclass for the wrappers.
#ifndef __WRAP__
#define vtkSMDomain vtkSMRangeDomainTemplate<double>
#endif
class VTKPVSERVERMANAGERCORE_EXPORT vtkSMDoubleRangeDomain : public vtkSMDomain
#ifndef __WRAP__
#undef vtkSMDomain
#endif
{
public:
static vtkSMDoubleRangeDomain* New();
vtkTypeMacro(vtkSMDoubleRangeDomain, vtkSMDomain);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
/**
* Return a min. value if it exists. If the min. exists
* exists is set to 1. Otherwise, it is set to 0.
* An unspecified min. is equivalent to -inf
*/
double GetMinimum(unsigned int idx, int& exists)
{
return this->RealSuperclass::GetMinimum(idx, exists);
}
/**
* Return a max. value if it exists. If the max. exists
* exists is set to 1. Otherwise, it is set to 0.
* An unspecified max. is equivalent to +inf
*/
double GetMaximum(unsigned int idx, int& exists)
{
return this->RealSuperclass::GetMaximum(idx, exists);
}
/**
* Returns if minimum/maximum bound is set for the domain.
*/
int GetMinimumExists(unsigned int idx)
{
return this->RealSuperclass::GetMinimumExists(idx) ? 1 : 0;
}
int GetMaximumExists(unsigned int idx)
{
return this->RealSuperclass::GetMaximumExists(idx) ? 1 : 0;
}
/**
* Returns the minimum/maximum value, is exists, otherwise
* 0 is returned. Use GetMaximumExists() GetMaximumExists() to make sure that
* the bound is set.
*/
double GetMinimum(unsigned int idx) { return this->RealSuperclass::GetMinimum(idx); }
double GetMaximum(unsigned int idx) { return this->RealSuperclass::GetMaximum(idx); }
protected:
vtkSMDoubleRangeDomain();
~vtkSMDoubleRangeDomain();
private:
vtkSMDoubleRangeDomain(const vtkSMDoubleRangeDomain&) VTK_DELETE_FUNCTION;
void operator=(const vtkSMDoubleRangeDomain&) VTK_DELETE_FUNCTION;
typedef vtkSMRangeDomainTemplate<double> RealSuperclass;
};
#if !defined(vtkSMDoubleRangeDomain_cxx)
#undef VTK_DATA_ARRAY_TEMPLATE_TYPE
#endif
#endif
|