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
|
/*=========================================================================
Program: ParaView
Module: vtkSMIntRangeDomain.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 vtkSMIntRangeDomain
* @brief type specific extension to
* vtkSMRangeDomainTemplate for ints.
*
* vtkSMIntRangeDomain is a type specific extension to
* vtkSMRangeDomainTemplate for ints.
*/
#ifndef vtkSMIntRangeDomain_h
#define vtkSMIntRangeDomain_h
// Tell the template header how to give our superclass a DLL interface.
#if !defined(vtkSMIntRangeDomain_cxx)
#define VTK_DATA_ARRAY_TEMPLATE_TYPE int
#endif
#include "vtkPVServerManagerCoreModule.h" //needed for exports
#include "vtkSMDomain.h"
#include "vtkSMRangeDomainTemplate.h" // Read superclass
#ifndef __WRAP__
#define vtkSMDomain vtkSMRangeDomainTemplate<int>
#endif
class VTKPVSERVERMANAGERCORE_EXPORT vtkSMIntRangeDomain : public vtkSMDomain
#ifndef __WRAP__
#undef vtkSMDomain
#endif
{
public:
static vtkSMIntRangeDomain* New();
vtkTypeMacro(vtkSMIntRangeDomain, 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
*/
int 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
*/
int 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.
*/
int GetMinimum(unsigned int idx) { return this->RealSuperclass::GetMinimum(idx); }
int GetMaximum(unsigned int idx) { return this->RealSuperclass::GetMaximum(idx); }
protected:
vtkSMIntRangeDomain();
~vtkSMIntRangeDomain();
private:
vtkSMIntRangeDomain(const vtkSMIntRangeDomain&) VTK_DELETE_FUNCTION;
void operator=(const vtkSMIntRangeDomain&) VTK_DELETE_FUNCTION;
typedef vtkSMRangeDomainTemplate<int> RealSuperclass;
};
#if !defined(vtkSMIntRangeDomain_cxx)
#undef VTK_DATA_ARRAY_TEMPLATE_TYPE
#endif
#endif
|