diff --git a/CMake/vtkObjectFactory.cxx.in b/CMake/vtkObjectFactory.cxx.in index 4f9b2ecf5f8138bbce6cb991cb523d50255fe48d..f050963dac61e9e381370f09e2308ce3f31661e5 100644 --- a/CMake/vtkObjectFactory.cxx.in +++ b/CMake/vtkObjectFactory.cxx.in @@ -23,7 +23,7 @@ vtkStandardNewMacro(@_vtk_object_factory_library_name@ObjectFactory); @_vtk_object_factory_calls@ } -const char * @_vtk_object_factory_library_name@ObjectFactory::GetVTKSourceVersion() +const char * @_vtk_object_factory_library_name@ObjectFactory::GetVTKSourceVersion() VTK_FUTURE_CONST { return VTK_SOURCE_VERSION; } diff --git a/CMake/vtkObjectFactory.h.in b/CMake/vtkObjectFactory.h.in index d995e4ca372c647b9ae09127d8abea5a20610052..e36aa7a7a0ccd74eac1af45846bef1096816f5ae 100644 --- a/CMake/vtkObjectFactory.h.in +++ b/CMake/vtkObjectFactory.h.in @@ -15,9 +15,9 @@ public: static @_vtk_object_factory_library_name@ObjectFactory * New(); vtkTypeMacro(@_vtk_object_factory_library_name@ObjectFactory, vtkObjectFactory); - const char * GetDescription() override { return "@_vtk_object_factory_library_name@ factory overrides."; } + const char * GetDescription() VTK_FUTURE_CONST override { return "@_vtk_object_factory_library_name@ factory overrides."; } - const char * GetVTKSourceVersion() override; + const char * GetVTKSourceVersion() VTK_FUTURE_CONST override; void PrintSelf(ostream &os, vtkIndent indent) override; diff --git a/Common/Core/Testing/Cxx/TestObjectFactory.cxx b/Common/Core/Testing/Cxx/TestObjectFactory.cxx index ff253fed8ab9e237d49b0afe6a0e3a80b6ba039b..8b6ec4982ccf2b2a7facec8b67e40cd275e3d3de 100644 --- a/Common/Core/Testing/Cxx/TestObjectFactory.cxx +++ b/Common/Core/Testing/Cxx/TestObjectFactory.cxx @@ -55,8 +55,8 @@ public: f->InitializeObjectBase(); return f; } - const char* GetVTKSourceVersion() override { return VTK_SOURCE_VERSION; } - const char* GetDescription() override { return "A fine Test Factory"; } + const char* GetVTKSourceVersion() VTK_FUTURE_CONST override { return VTK_SOURCE_VERSION; } + const char* GetDescription() VTK_FUTURE_CONST override { return "A fine Test Factory"; } protected: TestFactory(const TestFactory&) = delete; diff --git a/Common/Core/vtkArray.cxx b/Common/Core/vtkArray.cxx index bf3157a0e1039ae0b74758661c5d71b58d227cde..ec38f2b9e723d977e54dc877c18a8e7b5c763e70 100644 --- a/Common/Core/vtkArray.cxx +++ b/Common/Core/vtkArray.cxx @@ -177,12 +177,12 @@ vtkArrayRange vtkArray::GetExtent(DimensionT dimension) return this->GetExtents()[dimension]; } -vtkArray::DimensionT vtkArray::GetDimensions() +vtkArray::DimensionT vtkArray::GetDimensions() VTK_FUTURE_CONST { return this->GetExtents().GetDimensions(); } -vtkTypeUInt64 vtkArray::GetSize() +vtkTypeUInt64 vtkArray::GetSize() VTK_FUTURE_CONST { return this->GetExtents().GetSize(); } @@ -197,7 +197,7 @@ void vtkArray::SetName(const vtkStdString& raw_name) this->Name = name; } -vtkStdString vtkArray::GetName() +vtkStdString vtkArray::GetName() VTK_FUTURE_CONST { return this->Name; } @@ -219,7 +219,7 @@ void vtkArray::SetDimensionLabel(DimensionT i, const vtkStdString& raw_label) this->InternalSetDimensionLabel(i, label); } -vtkStdString vtkArray::GetDimensionLabel(DimensionT i) +vtkStdString vtkArray::GetDimensionLabel(DimensionT i) VTK_FUTURE_CONST { if (i < 0 || i >= this->GetDimensions()) { diff --git a/Common/Core/vtkArray.h b/Common/Core/vtkArray.h index 064fd0497ede45824768671338b8ff4245d5cc6f..a4e6978309753f31a3c12d30bb487f92611ece98 100644 --- a/Common/Core/vtkArray.h +++ b/Common/Core/vtkArray.h @@ -79,7 +79,7 @@ public: * GetSize() and GetNonNullSize() will always return the same value. * If not, the array is "sparse". */ - virtual bool IsDense() = 0; + virtual bool IsDense() VTK_FUTURE_CONST = 0; ///@{ /** @@ -112,13 +112,13 @@ public: * Returns the extents (the number of dimensions and size along each * dimension) of the array. */ - virtual const vtkArrayExtents& GetExtents() = 0; + virtual const vtkArrayExtents& GetExtents() VTK_FUTURE_CONST = 0; /** * Returns the number of dimensions stored in the array. Note that * this is the same as calling GetExtents().GetDimensions(). */ - DimensionT GetDimensions(); + DimensionT GetDimensions() VTK_FUTURE_CONST; /** * Returns the number of values stored in the array. Note that this is @@ -128,14 +128,14 @@ public: * array, but may be larger than the number of values stored in a * sparse array. */ - SizeT GetSize(); + SizeT GetSize() VTK_FUTURE_CONST; /** * Returns the number of non-null values stored in the array. Note * that this value will equal GetSize() for dense arrays, and will be * less-than-or-equal to GetSize() for sparse arrays. */ - virtual SizeT GetNonNullSize() = 0; + virtual SizeT GetNonNullSize() VTK_FUTURE_CONST = 0; /** * Sets the array name. @@ -144,7 +144,7 @@ public: /** * Returns the array name. */ - vtkStdString GetName(); + vtkStdString GetName() VTK_FUTURE_CONST; /** * Sets the label for the i-th array dimension. @@ -154,7 +154,7 @@ public: /** * Returns the label for the i-th array dimension. */ - vtkStdString GetDimensionLabel(DimensionT i); + vtkStdString GetDimensionLabel(DimensionT i) VTK_FUTURE_CONST; /** * Returns the coordinates of the n-th value in the array, where n is @@ -163,7 +163,7 @@ public: * order in which values are visited using vtkTypedArray::GetValueN() * and vtkTypedArray::SetValueN(). */ - virtual void GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) = 0; + virtual void GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) VTK_FUTURE_CONST = 0; ///@{ /** @@ -253,7 +253,7 @@ private: /** * Implemented in concrete derivatives to get dimension labels. */ - virtual vtkStdString InternalGetDimensionLabel(DimensionT i) = 0; + virtual vtkStdString InternalGetDimensionLabel(DimensionT i) VTK_FUTURE_CONST = 0; ///@} }; diff --git a/Common/Core/vtkCollection.cxx b/Common/Core/vtkCollection.cxx index 46ad23d2645175522897c8210d8c78cf4c6446df..ec757acbbfe65b05d0a81decb21e5b9c011148fe 100644 --- a/Common/Core/vtkCollection.cxx +++ b/Common/Core/vtkCollection.cxx @@ -189,7 +189,7 @@ void vtkCollection::RemoveAllItems() // Search for an object and return location in list. If location == -1, // object was not found. -int vtkCollection::IndexOfFirstOccurence(vtkObject* a) +int vtkCollection::IndexOfFirstOccurence(vtkObject* a) VTK_FUTURE_CONST { if (!this->Top) { @@ -214,7 +214,7 @@ int vtkCollection::IndexOfFirstOccurence(vtkObject* a) // Search for an object and return location in list. If location == 0, // object was not found. -int vtkCollection::IsItemPresent(vtkObject* a) +int vtkCollection::IsItemPresent(vtkObject* a) VTK_FUTURE_CONST { if (!this->Top) { @@ -246,7 +246,7 @@ void vtkCollection::PrintSelf(ostream& os, vtkIndent indent) // Get the i'th item in the collection. nullptr is returned if i is out // of range -vtkObject* vtkCollection::GetItemAsObject(int i) +vtkObject* vtkCollection::GetItemAsObject(int i) VTK_FUTURE_CONST { vtkCollectionElement* elem = this->Top; diff --git a/Common/Core/vtkCollection.h b/Common/Core/vtkCollection.h index 2d1ce512a7bce428259734d5c79c14a0d1b453af..d7f92d9ce5d7a637124a6b635ac97909e547eb16 100644 --- a/Common/Core/vtkCollection.h +++ b/Common/Core/vtkCollection.h @@ -92,19 +92,19 @@ public: * 0, the object was not found. If the object was found, the location is * the return value-1. */ - int IsItemPresent(vtkObject* a); + int IsItemPresent(vtkObject* a) VTK_FUTURE_CONST; /** * Search for an object and return location in list. If the return value is * -1, the object was not found. If the object was found, the location is * at the returned (0-based) index. */ - int IndexOfFirstOccurence(vtkObject* a); + int IndexOfFirstOccurence(vtkObject* a) VTK_FUTURE_CONST; /** * Return the number of objects in the list. */ - int GetNumberOfItems() { return this->NumberOfItems; } + int GetNumberOfItems() VTK_FUTURE_CONST { return this->NumberOfItems; } /** * Initialize the traversal of the collection. This means the data pointer @@ -131,13 +131,13 @@ public: * Get the i'th item in the collection. nullptr is returned if i is out * of range */ - vtkObject* GetItemAsObject(int i); + vtkObject* GetItemAsObject(int i) VTK_FUTURE_CONST; /** * A reentrant safe way to get the next object as a collection. Just pass the * same cookie back and forth. */ - vtkObject* GetNextItemAsObject(vtkCollectionSimpleIterator& cookie); + vtkObject* GetNextItemAsObject(vtkCollectionSimpleIterator& cookie) VTK_FUTURE_CONST; /** * Get an iterator to traverse the objects in this collection. @@ -187,7 +187,7 @@ inline vtkObject* vtkCollection::GetNextItemAsObject() } } -inline vtkObject* vtkCollection::GetNextItemAsObject(void*& cookie) +inline vtkObject* vtkCollection::GetNextItemAsObject(void*& cookie) VTK_FUTURE_CONST { vtkCollectionElement* elem = static_cast<vtkCollectionElement*>(cookie); diff --git a/Common/Core/vtkDenseArray.h b/Common/Core/vtkDenseArray.h index 906ac05993bf29ace929e2a789fad7b57b8ebe13..be42836c7e2485c940994dc647b6ceb18fcc2c17 100644 --- a/Common/Core/vtkDenseArray.h +++ b/Common/Core/vtkDenseArray.h @@ -47,10 +47,10 @@ public: typedef typename vtkArray::SizeT SizeT; // vtkArray API - bool IsDense() override; - const vtkArrayExtents& GetExtents() override; - SizeT GetNonNullSize() override; - void GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) override; + bool IsDense() VTK_FUTURE_CONST override; + const vtkArrayExtents& GetExtents() VTK_FUTURE_CONST override; + SizeT GetNonNullSize() VTK_FUTURE_CONST override; + void GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) VTK_FUTURE_CONST override; vtkArray* DeepCopy() override; // vtkTypedArray API @@ -167,7 +167,7 @@ private: void InternalResize(const vtkArrayExtents& extents) override; void InternalSetDimensionLabel(DimensionT i, const vtkStdString& label) override; - vtkStdString InternalGetDimensionLabel(DimensionT i) override; + vtkStdString InternalGetDimensionLabel(DimensionT i) VTK_FUTURE_CONST override; inline vtkIdType MapCoordinates(CoordinateT i); inline vtkIdType MapCoordinates(CoordinateT i, CoordinateT j); inline vtkIdType MapCoordinates(CoordinateT i, CoordinateT j, CoordinateT k); diff --git a/Common/Core/vtkDenseArray.txx b/Common/Core/vtkDenseArray.txx index 6666cb9f773383a692ba960458991728fb08424e..24906f6eb2aa30bc3f7e25fbf018842e0396bf0a 100644 --- a/Common/Core/vtkDenseArray.txx +++ b/Common/Core/vtkDenseArray.txx @@ -70,25 +70,25 @@ void vtkDenseArray<T>::PrintSelf(ostream& os, vtkIndent indent) } template <typename T> -bool vtkDenseArray<T>::IsDense() +bool vtkDenseArray<T>::IsDense() VTK_FUTURE_CONST { return true; } template <typename T> -const vtkArrayExtents& vtkDenseArray<T>::GetExtents() +const vtkArrayExtents& vtkDenseArray<T>::GetExtents() VTK_FUTURE_CONST { return this->Extents; } template <typename T> -typename vtkDenseArray<T>::SizeT vtkDenseArray<T>::GetNonNullSize() +typename vtkDenseArray<T>::SizeT vtkDenseArray<T>::GetNonNullSize() VTK_FUTURE_CONST { return this->Extents.GetSize(); } template <typename T> -void vtkDenseArray<T>::GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) +void vtkDenseArray<T>::GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) VTK_FUTURE_CONST { coordinates.SetDimensions(this->GetDimensions()); @@ -293,7 +293,7 @@ void vtkDenseArray<T>::InternalSetDimensionLabel(DimensionT i, const vtkStdStrin } template <typename T> -vtkStdString vtkDenseArray<T>::InternalGetDimensionLabel(DimensionT i) +vtkStdString vtkDenseArray<T>::InternalGetDimensionLabel(DimensionT i) VTK_FUTURE_CONST { return this->DimensionLabels[i]; } diff --git a/Common/Core/vtkIdList.h b/Common/Core/vtkIdList.h index 94a39dd0dd70aed444c49cad6f3297a761c7c8d4..13e5125f14157625e9a8792eaf04160cef4519f0 100644 --- a/Common/Core/vtkIdList.h +++ b/Common/Core/vtkIdList.h @@ -150,7 +150,7 @@ public: * Return -1 if id specified is not contained in the list; otherwise return * the position in the list. */ - vtkIdType IsId(vtkIdType vtkid); + vtkIdType IsId(vtkIdType vtkid) VTK_FUTURE_CONST; /** * Intersect this list with another vtkIdList. Updates current list according @@ -234,7 +234,7 @@ inline vtkIdType vtkIdList::InsertNextId(const vtkIdType vtkid) return this->NumberOfIds - 1; } -inline vtkIdType vtkIdList::IsId(vtkIdType vtkid) +inline vtkIdType vtkIdList::IsId(vtkIdType vtkid) VTK_FUTURE_CONST { vtkIdType *ptr, i; for (ptr = this->Ids, i = 0; i < this->NumberOfIds; i++, ptr++) diff --git a/Common/Core/vtkInformation.cxx b/Common/Core/vtkInformation.cxx index 2e96fd9a58ad6b2a1d26ecfa40c754c1eb821d1b..6dfbf12d971d78502f937a992f93f1d96ecf05d3 100644 --- a/Common/Core/vtkInformation.cxx +++ b/Common/Core/vtkInformation.cxx @@ -421,7 +421,7 @@ void vtkInformation::CopyEntries( } //------------------------------------------------------------------------------ -int vtkInformation::Has(vtkInformationKey* key) +int vtkInformation::Has(vtkInformationKey* key) VTK_FUTURE_CONST { // Use the virtual interface in case this is a special-cased key. return key->Has(this) ? 1 : 0; @@ -442,7 +442,7 @@ void vtkInformation::Remove(vtkInformationRequestKey* key) { key->vtkInformationRequestKey::Remove(this); } -int vtkInformation::Has(vtkInformationRequestKey* key) +int vtkInformation::Has(vtkInformationRequestKey* key) VTK_FUTURE_CONST { return key->vtkInformationRequestKey::Has(this); } @@ -461,7 +461,7 @@ int vtkInformation::Has(vtkInformationRequestKey* key) { \ return key->Get(this); \ } \ - int vtkInformation::Has(vtkInformation##name##Key* key) \ + int vtkInformation::Has(vtkInformation##name##Key* key) VTK_FUTURE_CONST \ { \ return key->vtkInformation##name##Key::Has(this); \ } @@ -507,7 +507,7 @@ VTK_INFORMATION_DEFINE_SCALAR_PROPERTY(Variant, const vtkVariant&); { \ key->vtkInformation##name##VectorKey::Remove(this); \ } \ - int vtkInformation::Has(vtkInformation##name##VectorKey* key) \ + int vtkInformation::Has(vtkInformation##name##VectorKey* key) VTK_FUTURE_CONST \ { \ return key->vtkInformation##name##VectorKey::Has(this); \ } @@ -558,7 +558,7 @@ void vtkInformation::Remove(vtkInformationVariantVectorKey* key) { key->vtkInformationVariantVectorKey::Remove(this); } -int vtkInformation::Has(vtkInformationVariantVectorKey* key) +int vtkInformation::Has(vtkInformationVariantVectorKey* key) VTK_FUTURE_CONST { return key->vtkInformationVariantVectorKey::Has(this); } @@ -585,7 +585,7 @@ void vtkInformation::Remove(vtkInformationStringVectorKey* key) { key->vtkInformationStringVectorKey::Remove(this); } -int vtkInformation::Has(vtkInformationStringVectorKey* key) +int vtkInformation::Has(vtkInformationStringVectorKey* key) VTK_FUTURE_CONST { return key->vtkInformationStringVectorKey::Has(this); } @@ -633,7 +633,7 @@ void vtkInformation::Remove(vtkInformationObjectBaseVectorKey* key, int indexToR } //------------------------------------------------------------------------------ -int vtkInformation::Has(vtkInformationObjectBaseVectorKey* key) +int vtkInformation::Has(vtkInformationObjectBaseVectorKey* key) VTK_FUTURE_CONST { return key->Has(this); } @@ -692,7 +692,7 @@ VTK_INFORMATION_DEFINE_VECTOR_VALUE2_PROPERTY(Variant, vtkVariant, const vtkVari { \ key->vtkInformation##name##PointerKey::Remove(this); \ } \ - int vtkInformation::Has(vtkInformation##name##PointerKey* key) \ + int vtkInformation::Has(vtkInformation##name##PointerKey* key) VTK_FUTURE_CONST \ { \ return key->vtkInformation##name##PointerKey::Has(this); \ } @@ -969,7 +969,7 @@ void vtkInformation::SetRequest(vtkInformationRequestKey* request) } //------------------------------------------------------------------------------ -vtkInformationRequestKey* vtkInformation::GetRequest() +vtkInformationRequestKey* vtkInformation::GetRequest() VTK_FUTURE_CONST { return this->Request; } diff --git a/Common/Core/vtkInformation.h b/Common/Core/vtkInformation.h index c763128649d9bf38069726b7719ab27e0424d4fc..365976ecabf664817e3b1d822f431f96f5b2597d 100644 --- a/Common/Core/vtkInformation.h +++ b/Common/Core/vtkInformation.h @@ -80,7 +80,7 @@ public: * Return the number of keys in this information object (as would be returned * by iterating over the keys). */ - int GetNumberOfKeys(); + int GetNumberOfKeys(); // can't const /** * Copy all information entries from the given vtkInformation @@ -135,7 +135,7 @@ public: /** * Check whether the given key appears in this information object. */ - int Has(vtkInformationKey* key); + int Has(vtkInformationKey* key) VTK_FUTURE_CONST; /** * Remove the given key and its data from this information object. @@ -148,7 +148,7 @@ public: */ void Set(vtkInformationRequestKey* key); void Remove(vtkInformationRequestKey* key); - int Has(vtkInformationRequestKey* key); + int Has(vtkInformationRequestKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -158,7 +158,7 @@ public: void Set(vtkInformationIntegerKey* key, int value); int Get(vtkInformationIntegerKey* key); void Remove(vtkInformationIntegerKey* key); - int Has(vtkInformationIntegerKey* key); + int Has(vtkInformationIntegerKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -168,7 +168,7 @@ public: void Set(vtkInformationIdTypeKey* key, vtkIdType value); vtkIdType Get(vtkInformationIdTypeKey* key); void Remove(vtkInformationIdTypeKey* key); - int Has(vtkInformationIdTypeKey* key); + int Has(vtkInformationIdTypeKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -178,7 +178,7 @@ public: void Set(vtkInformationDoubleKey* key, double value); double Get(vtkInformationDoubleKey* key); void Remove(vtkInformationDoubleKey* key); - int Has(vtkInformationDoubleKey* key); + int Has(vtkInformationDoubleKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -188,7 +188,7 @@ public: void Set(vtkInformationVariantKey* key, const vtkVariant& value); const vtkVariant& Get(vtkInformationVariantKey* key); void Remove(vtkInformationVariantKey* key); - int Has(vtkInformationVariantKey* key); + int Has(vtkInformationVariantKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -205,7 +205,7 @@ public: void Get(vtkInformationIntegerVectorKey* key, int* value); int Length(vtkInformationIntegerVectorKey* key); void Remove(vtkInformationIntegerVectorKey* key); - int Has(vtkInformationIntegerVectorKey* key); + int Has(vtkInformationIntegerVectorKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -219,7 +219,7 @@ public: const char* Get(vtkInformationStringVectorKey* key, int idx = 0); int Length(vtkInformationStringVectorKey* key); void Remove(vtkInformationStringVectorKey* key); - int Has(vtkInformationStringVectorKey* key); + int Has(vtkInformationStringVectorKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -231,7 +231,7 @@ public: void Get(vtkInformationIntegerPointerKey* key, int* value); int Length(vtkInformationIntegerPointerKey* key); void Remove(vtkInformationIntegerPointerKey* key); - int Has(vtkInformationIntegerPointerKey* key); + int Has(vtkInformationIntegerPointerKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -241,7 +241,7 @@ public: void Set(vtkInformationUnsignedLongKey* key, unsigned long value); unsigned long Get(vtkInformationUnsignedLongKey* key); void Remove(vtkInformationUnsignedLongKey* key); - int Has(vtkInformationUnsignedLongKey* key); + int Has(vtkInformationUnsignedLongKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -258,7 +258,7 @@ public: void Get(vtkInformationDoubleVectorKey* key, double* value); int Length(vtkInformationDoubleVectorKey* key); void Remove(vtkInformationDoubleVectorKey* key); - int Has(vtkInformationDoubleVectorKey* key); + int Has(vtkInformationDoubleVectorKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -277,7 +277,7 @@ public: void Get(vtkInformationVariantVectorKey* key, vtkVariant* value); int Length(vtkInformationVariantVectorKey* key); void Remove(vtkInformationVariantVectorKey* key); - int Has(vtkInformationVariantVectorKey* key); + int Has(vtkInformationVariantVectorKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -293,7 +293,7 @@ public: void Get(vtkInformationKeyVectorKey* key, vtkInformationKey** value); int Length(vtkInformationKeyVectorKey* key); void Remove(vtkInformationKeyVectorKey* key); - int Has(vtkInformationKeyVectorKey* key); + int Has(vtkInformationKeyVectorKey* key) VTK_FUTURE_CONST; ///@} // Provide extra overloads of this method to avoid requiring user @@ -333,7 +333,7 @@ public: void Set(vtkInformationStringKey* key, const std::string&); const char* Get(vtkInformationStringKey* key); void Remove(vtkInformationStringKey* key); - int Has(vtkInformationStringKey* key); + int Has(vtkInformationStringKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -343,7 +343,7 @@ public: void Set(vtkInformationInformationKey* key, vtkInformation*); vtkInformation* Get(vtkInformationInformationKey* key); void Remove(vtkInformationInformationKey* key); - int Has(vtkInformationInformationKey* key); + int Has(vtkInformationInformationKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -353,7 +353,7 @@ public: void Set(vtkInformationInformationVectorKey* key, vtkInformationVector*); vtkInformationVector* Get(vtkInformationInformationVectorKey* key); void Remove(vtkInformationInformationVectorKey* key); - int Has(vtkInformationInformationVectorKey* key); + int Has(vtkInformationInformationVectorKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -363,7 +363,7 @@ public: void Set(vtkInformationObjectBaseKey* key, vtkObjectBase*); vtkObjectBase* Get(vtkInformationObjectBaseKey* key); void Remove(vtkInformationObjectBaseKey* key); - int Has(vtkInformationObjectBaseKey* key); + int Has(vtkInformationObjectBaseKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -377,7 +377,7 @@ public: void Remove(vtkInformationObjectBaseVectorKey* key); void Remove(vtkInformationObjectBaseVectorKey* key, vtkObjectBase* objectToRemove); void Remove(vtkInformationObjectBaseVectorKey* key, int indexToRemove); - int Has(vtkInformationObjectBaseVectorKey* key); + int Has(vtkInformationObjectBaseVectorKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -387,7 +387,7 @@ public: void Set(vtkInformationDataObjectKey* key, vtkDataObject VTK_WRAP_EXTERN*); vtkDataObject VTK_WRAP_EXTERN* Get(vtkInformationDataObjectKey* key); void Remove(vtkInformationDataObjectKey* key); - int Has(vtkInformationDataObjectKey* key); + int Has(vtkInformationDataObjectKey* key) VTK_FUTURE_CONST; ///@} ///@{ @@ -422,7 +422,7 @@ public: * Get/Set the Request ivar */ void SetRequest(vtkInformationRequestKey* request); - vtkInformationRequestKey* GetRequest(); + vtkInformationRequestKey* GetRequest() VTK_FUTURE_CONST; ///@} protected: diff --git a/Common/Core/vtkInformationKey.cxx b/Common/Core/vtkInformationKey.cxx index c1027924422092573adaba1066fb4e655c07efc6..999b57c945af384b7e2de6675bc510a957e314e3 100644 --- a/Common/Core/vtkInformationKey.cxx +++ b/Common/Core/vtkInformationKey.cxx @@ -59,13 +59,13 @@ void vtkInformationKey::PrintSelf(ostream& os, vtkIndent indent) } //------------------------------------------------------------------------------ -const char* vtkInformationKey::GetName() +const char* vtkInformationKey::GetName() VTK_FUTURE_CONST { return this->Name; } //------------------------------------------------------------------------------ -const char* vtkInformationKey::GetLocation() +const char* vtkInformationKey::GetLocation() VTK_FUTURE_CONST { return this->Location; } @@ -83,13 +83,13 @@ vtkObjectBase* vtkInformationKey::GetAsObjectBase(vtkInformation* info) } //------------------------------------------------------------------------------ -const vtkObjectBase* vtkInformationKey::GetAsObjectBase(vtkInformation* info) const +const vtkObjectBase* vtkInformationKey::GetAsObjectBase(VTK_FUTURE_CONST vtkInformation* info) const { return vtkInformationKeyToInformationFriendship::GetAsObjectBase(info, this); } //------------------------------------------------------------------------------ -int vtkInformationKey::Has(vtkInformation* info) +int vtkInformationKey::Has(VTK_FUTURE_CONST vtkInformation* info) VTK_FUTURE_CONST { return this->GetAsObjectBase(info) ? 1 : 0; } diff --git a/Common/Core/vtkInformationKey.h b/Common/Core/vtkInformationKey.h index 47dfecf20fe84ae12201d66e6ed500eaeb8a1439..a429e17725e7c5b9d6e7e898d1caa90aa02dcc9c 100644 --- a/Common/Core/vtkInformationKey.h +++ b/Common/Core/vtkInformationKey.h @@ -34,13 +34,13 @@ public: * Get the name of the key. This is not the type of the key, but * the name of the key instance. */ - const char* GetName(); + const char* GetName() VTK_FUTURE_CONST; /** * Get the location of the key. This is the name of the class in * which the key is defined. */ - const char* GetLocation(); + const char* GetLocation() VTK_FUTURE_CONST; ///@{ /** @@ -72,7 +72,7 @@ public: /** * Check whether this key appears in the given information object. */ - virtual int Has(vtkInformation* info); + virtual int Has(VTK_FUTURE_CONST vtkInformation* info) VTK_FUTURE_CONST; /** * Remove this key from the given information object. @@ -178,7 +178,7 @@ protected: // Set/Get the value associated with this key instance in the given // information object. void SetAsObjectBase(vtkInformation* info, vtkObjectBase* value); - const vtkObjectBase* GetAsObjectBase(vtkInformation* info) const; + const vtkObjectBase* GetAsObjectBase(VTK_FUTURE_CONST vtkInformation* info) const; vtkObjectBase* GetAsObjectBase(vtkInformation* info); // Report the object associated with this key instance in the given diff --git a/Common/Core/vtkInformationRequestKey.cxx b/Common/Core/vtkInformationRequestKey.cxx index 7d8828fe84731c3dad97512d1dcc2cbe5a81de77..512ad494566dcd73ec4a15a5e890c3b4f8d5d13f 100644 --- a/Common/Core/vtkInformationRequestKey.cxx +++ b/Common/Core/vtkInformationRequestKey.cxx @@ -37,7 +37,7 @@ void vtkInformationRequestKey::Set(vtkInformation* info) } //------------------------------------------------------------------------------ -int vtkInformationRequestKey::Has(vtkInformation* info) +int vtkInformationRequestKey::Has(VTK_FUTURE_CONST vtkInformation* info) VTK_FUTURE_CONST { return (info->GetRequest() == this) ? 1 : 0; } diff --git a/Common/Core/vtkInformationRequestKey.h b/Common/Core/vtkInformationRequestKey.h index fae40cba104fdd72dee04477843bddc162303c4e..40e752e0b01031438db7a877c6c27e6e569d9a4c 100644 --- a/Common/Core/vtkInformationRequestKey.h +++ b/Common/Core/vtkInformationRequestKey.h @@ -43,7 +43,7 @@ public: */ void Set(vtkInformation* info); void Remove(vtkInformation* info) override; - int Has(vtkInformation* info) override; + int Has(VTK_FUTURE_CONST vtkInformation* info) VTK_FUTURE_CONST override; ///@} /** diff --git a/Common/Core/vtkObjectFactory.cxx b/Common/Core/vtkObjectFactory.cxx index 2ab0504d29bc81d484f4b8fc41f7d900e4eb6ac4..e8fbc1517c18fc1508d8176ea997835a1bb93af6 100644 --- a/Common/Core/vtkObjectFactory.cxx +++ b/Common/Core/vtkObjectFactory.cxx @@ -429,27 +429,27 @@ void vtkObjectFactory::GrowOverrideArray() } } -int vtkObjectFactory::GetNumberOfOverrides() +int vtkObjectFactory::GetNumberOfOverrides() VTK_FUTURE_CONST { return this->OverrideArrayLength; } -const char* vtkObjectFactory::GetClassOverrideName(int index) +const char* vtkObjectFactory::GetClassOverrideName(int index) VTK_FUTURE_CONST { return this->OverrideClassNames[index]; } -const char* vtkObjectFactory::GetClassOverrideWithName(int index) +const char* vtkObjectFactory::GetClassOverrideWithName(int index) VTK_FUTURE_CONST { return this->OverrideArray[index].OverrideWithName; } -vtkTypeBool vtkObjectFactory::GetEnableFlag(int index) +vtkTypeBool vtkObjectFactory::GetEnableFlag(int index) VTK_FUTURE_CONST { return this->OverrideArray[index].EnabledFlag; } -const char* vtkObjectFactory::GetOverrideDescription(int index) +const char* vtkObjectFactory::GetOverrideDescription(int index) VTK_FUTURE_CONST { return this->OverrideArray[index].Description; } @@ -479,7 +479,8 @@ void vtkObjectFactory::SetEnableFlag( } // Get the enable flag for a className/subclassName pair -vtkTypeBool vtkObjectFactory::GetEnableFlag(const char* className, const char* subclassName) +vtkTypeBool vtkObjectFactory::GetEnableFlag( + const char* className, const char* subclassName) VTK_FUTURE_CONST { for (int i = 0; i < this->OverrideArrayLength; i++) { @@ -507,7 +508,7 @@ void vtkObjectFactory::Disable(const char* className) } // 1,0 is the class overridden by className -vtkTypeBool vtkObjectFactory::HasOverride(const char* className) +vtkTypeBool vtkObjectFactory::HasOverride(const char* className) VTK_FUTURE_CONST { for (int i = 0; i < this->OverrideArrayLength; i++) { @@ -520,7 +521,8 @@ vtkTypeBool vtkObjectFactory::HasOverride(const char* className) } // 1,0 is the class overridden by className/subclassName pair -vtkTypeBool vtkObjectFactory::HasOverride(const char* className, const char* subclassName) +vtkTypeBool vtkObjectFactory::HasOverride( + const char* className, const char* subclassName) VTK_FUTURE_CONST { for (int i = 0; i < this->OverrideArrayLength; i++) { diff --git a/Common/Core/vtkObjectFactory.h b/Common/Core/vtkObjectFactory.h index 9d6fc6a9a1c9cb0c6480b2bc91e2f1df22d44e7e..2adf9bfe503c8a94362744c99c1ed5ed269f5c59 100644 --- a/Common/Core/vtkObjectFactory.h +++ b/Common/Core/vtkObjectFactory.h @@ -125,39 +125,39 @@ public: * As the version needs to be compiled into the file as a string constant. * This is critical to determine possible incompatible dynamic factory loads. */ - virtual const char* GetVTKSourceVersion() = 0; + virtual const char* GetVTKSourceVersion() VTK_FUTURE_CONST = 0; /** * Return a descriptive string describing the factory. */ - virtual const char* GetDescription() = 0; + virtual const char* GetDescription() VTK_FUTURE_CONST = 0; /** * Return number of overrides this factory can create. */ - virtual int GetNumberOfOverrides(); + virtual int GetNumberOfOverrides() VTK_FUTURE_CONST; /** * Return the name of a class override at the given index. */ - virtual const char* GetClassOverrideName(int index); + virtual const char* GetClassOverrideName(int index) VTK_FUTURE_CONST; /** * Return the name of the class that will override the class * at the given index */ - virtual const char* GetClassOverrideWithName(int index); + virtual const char* GetClassOverrideWithName(int index) VTK_FUTURE_CONST; /** * Return the enable flag for the class at the given index. */ - virtual vtkTypeBool GetEnableFlag(int index); + virtual vtkTypeBool GetEnableFlag(int index) VTK_FUTURE_CONST; /** * Return the description for a the class override at the given * index. */ - virtual const char* GetOverrideDescription(int index); + virtual const char* GetOverrideDescription(int index) VTK_FUTURE_CONST; ///@{ /** @@ -165,17 +165,18 @@ public: * if subclassName is null, then it is ignored. */ virtual void SetEnableFlag(vtkTypeBool flag, const char* className, const char* subclassName); - virtual vtkTypeBool GetEnableFlag(const char* className, const char* subclassName); + virtual vtkTypeBool GetEnableFlag( + const char* className, const char* subclassName) VTK_FUTURE_CONST; ///@} /** * Return 1 if this factory overrides the given class name, 0 otherwise. */ - virtual vtkTypeBool HasOverride(const char* className); + virtual vtkTypeBool HasOverride(const char* className) VTK_FUTURE_CONST; /** * Return 1 if this factory overrides the given class name, 0 otherwise. */ - virtual vtkTypeBool HasOverride(const char* className, const char* subclassName); + virtual vtkTypeBool HasOverride(const char* className, const char* subclassName) VTK_FUTURE_CONST; /** * Set all enable flags for the given class to 0. This will diff --git a/Common/Core/vtkSparseArray.h b/Common/Core/vtkSparseArray.h index 58af17eb8b0196b9920979baa5f19dc47aeb6736..be297489bb08d9bdc5244cad5cefd3045e77b43a 100644 --- a/Common/Core/vtkSparseArray.h +++ b/Common/Core/vtkSparseArray.h @@ -68,10 +68,10 @@ public: typedef typename vtkArray::SizeT SizeT; // vtkArray API - bool IsDense() override; - const vtkArrayExtents& GetExtents() override; - SizeT GetNonNullSize() override; - void GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) override; + bool IsDense() VTK_FUTURE_CONST override; + const vtkArrayExtents& GetExtents() VTK_FUTURE_CONST override; + SizeT GetNonNullSize() VTK_FUTURE_CONST override; + void GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) VTK_FUTURE_CONST override; vtkArray* DeepCopy() override; // vtkTypedArray API @@ -204,7 +204,7 @@ private: void InternalResize(const vtkArrayExtents& extents) override; void InternalSetDimensionLabel(DimensionT i, const vtkStdString& label) override; - vtkStdString InternalGetDimensionLabel(DimensionT i) override; + vtkStdString InternalGetDimensionLabel(DimensionT i) VTK_FUTURE_CONST override; typedef vtkSparseArray<T> ThisT; diff --git a/Common/Core/vtkSparseArray.txx b/Common/Core/vtkSparseArray.txx index 4171775e91a33ebcb746c37570adbdc73c3ca2d2..ffe599f66f7589fb022a05f6c201547a35aa7397 100644 --- a/Common/Core/vtkSparseArray.txx +++ b/Common/Core/vtkSparseArray.txx @@ -26,25 +26,25 @@ void vtkSparseArray<T>::PrintSelf(ostream& os, vtkIndent indent) } template <typename T> -bool vtkSparseArray<T>::IsDense() +bool vtkSparseArray<T>::IsDense() VTK_FUTURE_CONST { return false; } template <typename T> -const vtkArrayExtents& vtkSparseArray<T>::GetExtents() +const vtkArrayExtents& vtkSparseArray<T>::GetExtents() VTK_FUTURE_CONST { return this->Extents; } template <typename T> -typename vtkSparseArray<T>::SizeT vtkSparseArray<T>::GetNonNullSize() +typename vtkSparseArray<T>::SizeT vtkSparseArray<T>::GetNonNullSize() VTK_FUTURE_CONST { return this->Values.size(); } template <typename T> -void vtkSparseArray<T>::GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) +void vtkSparseArray<T>::GetCoordinatesN(SizeT n, vtkArrayCoordinates& coordinates) VTK_FUTURE_CONST { coordinates.SetDimensions(this->GetDimensions()); for (DimensionT i = 0; i != this->GetDimensions(); ++i) @@ -592,7 +592,7 @@ void vtkSparseArray<T>::InternalSetDimensionLabel(DimensionT i, const vtkStdStri } template <typename T> -vtkStdString vtkSparseArray<T>::InternalGetDimensionLabel(DimensionT i) +vtkStdString vtkSparseArray<T>::InternalGetDimensionLabel(DimensionT i) VTK_FUTURE_CONST { return this->DimensionLabels[i]; } diff --git a/Common/DataModel/vtkAbstractElectronicData.h b/Common/DataModel/vtkAbstractElectronicData.h index e750306e30707b61172adb66e92175a8d213c1ad..19e3cb8890f414a2b9968d0202cff21967c62e75 100644 --- a/Common/DataModel/vtkAbstractElectronicData.h +++ b/Common/DataModel/vtkAbstractElectronicData.h @@ -25,7 +25,7 @@ public: /** * Returns `VTK_ABSTRACT_ELECTRONIC_DATA`. */ - int GetDataObjectType() override { return VTK_ABSTRACT_ELECTRONIC_DATA; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_ABSTRACT_ELECTRONIC_DATA; } /** * Returns the number of molecular orbitals available. diff --git a/Common/DataModel/vtkAnnotation.h b/Common/DataModel/vtkAnnotation.h index 1e7302288116043ae62b70d342241976f734015f..ad78836f61a9c2442be7d378fa9c2eb4e92c9e51 100644 --- a/Common/DataModel/vtkAnnotation.h +++ b/Common/DataModel/vtkAnnotation.h @@ -39,7 +39,7 @@ public: /** * Returns `VTK_ANNOTATION`. */ - int GetDataObjectType() override { return VTK_ANNOTATION; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_ANNOTATION; } ///@{ /** diff --git a/Common/DataModel/vtkAnnotationLayers.h b/Common/DataModel/vtkAnnotationLayers.h index 40b1f51b412082a4d4ff9967f8f9d2495edc2415..9d11b9850686696149d584df902d5b39511e2af7 100644 --- a/Common/DataModel/vtkAnnotationLayers.h +++ b/Common/DataModel/vtkAnnotationLayers.h @@ -33,7 +33,7 @@ public: /** * Returns `VTK_ANNOTATION`. */ - int GetDataObjectType() override { return VTK_ANNOTATION_LAYERS; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_ANNOTATION_LAYERS; } ///@{ /** diff --git a/Common/DataModel/vtkArrayData.cxx b/Common/DataModel/vtkArrayData.cxx index 125cb9e7fcd66c0557b76348b0d32273290204f6..7c72386551e7b1fd6a5ea31f8b70c741066deee3 100644 --- a/Common/DataModel/vtkArrayData.cxx +++ b/Common/DataModel/vtkArrayData.cxx @@ -105,7 +105,7 @@ void vtkArrayData::ClearArrays() this->Modified(); } -vtkIdType vtkArrayData::GetNumberOfArrays() +vtkIdType vtkArrayData::GetNumberOfArrays() VTK_FUTURE_CONST { return static_cast<vtkIdType>(this->Implementation->Arrays.size()); } diff --git a/Common/DataModel/vtkArrayData.h b/Common/DataModel/vtkArrayData.h index 8f6e02129cd2ca2630d6fba212478e097670c1c1..a71bac86e7cf073dae8be3ef4ae264fa9286c6e4 100644 --- a/Common/DataModel/vtkArrayData.h +++ b/Common/DataModel/vtkArrayData.h @@ -52,7 +52,7 @@ public: /** * Returns the number of vtkArray instances in the collection */ - vtkIdType GetNumberOfArrays(); + vtkIdType GetNumberOfArrays() VTK_FUTURE_CONST; /** * Returns the n-th vtkArray in the collection @@ -67,7 +67,7 @@ public: /** * Return class name of data type (VTK_ARRAY_DATA). */ - int GetDataObjectType() override { return VTK_ARRAY_DATA; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_ARRAY_DATA; } void ShallowCopy(vtkDataObject* other) override; void DeepCopy(vtkDataObject* other) override; diff --git a/Common/DataModel/vtkBSPCuts.h b/Common/DataModel/vtkBSPCuts.h index fc7c61afa842115fe2c0adbe2f7918f9a866693b..fde8707d09f8231f2d75936fd72d197957496930 100644 --- a/Common/DataModel/vtkBSPCuts.h +++ b/Common/DataModel/vtkBSPCuts.h @@ -37,7 +37,7 @@ public: /** * Returns VTK_BSP_CUTS. */ - int GetDataObjectType() override { return VTK_BSP_CUTS; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_BSP_CUTS; } /** * Initialize the cuts with arrays of information. This type of diff --git a/Common/DataModel/vtkBox.cxx b/Common/DataModel/vtkBox.cxx index f63d928d66d6ffa656e460133174a3dcafda6898..fd5529f9ffee5c01a01ddb156e45d80d6d1b5fe2 100644 --- a/Common/DataModel/vtkBox.cxx +++ b/Common/DataModel/vtkBox.cxx @@ -78,14 +78,14 @@ void vtkBox::SetXMax(double x, double y, double z) } //------------------------------------------------------------------------------ -void vtkBox::GetBounds( - double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, double& zMax) +void vtkBox::GetBounds(double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, + double& zMax) VTK_FUTURE_CONST { this->BBox->GetBounds(xMin, xMax, yMin, yMax, zMin, zMax); } //------------------------------------------------------------------------------ -void vtkBox::GetBounds(double bounds[6]) +void vtkBox::GetBounds(double bounds[6]) VTK_FUTURE_CONST { this->BBox->GetBounds(bounds); } @@ -806,25 +806,25 @@ void vtkBox::PrintSelf(ostream& os, vtkIndent indent) os << indent << "XMax: (" << maxP[0] << ", " << maxP[1] << ", " << maxP[2] << ")\n"; } //------------------------------------------------------------------------------ -void vtkBox::GetXMin(double p[3]) +void vtkBox::GetXMin(double p[3]) VTK_FUTURE_CONST { this->BBox->GetMinPoint(p[0], p[1], p[2]); } //------------------------------------------------------------------------------ -void vtkBox::GetXMin(double& x, double& y, double& z) +void vtkBox::GetXMin(double& x, double& y, double& z) VTK_FUTURE_CONST { this->BBox->GetMinPoint(x, y, z); } //------------------------------------------------------------------------------ -void vtkBox::GetXMax(double p[3]) +void vtkBox::GetXMax(double p[3]) VTK_FUTURE_CONST { this->BBox->GetMaxPoint(p[0], p[1], p[2]); } //------------------------------------------------------------------------------ -void vtkBox::GetXMax(double& x, double& y, double& z) +void vtkBox::GetXMax(double& x, double& y, double& z) VTK_FUTURE_CONST { this->BBox->GetMaxPoint(x, y, z); } diff --git a/Common/DataModel/vtkBox.h b/Common/DataModel/vtkBox.h index 555524a103c4fe173787116f450b69c53515bd94..f49f0c175801ee3c86eab3af66a6f0b0a6ce7c04 100644 --- a/Common/DataModel/vtkBox.h +++ b/Common/DataModel/vtkBox.h @@ -50,22 +50,22 @@ public: /** * Set / get the bounding box using various methods. */ - void SetXMin(double p[3]); + void SetXMin(VTK_FUTURE_CONST double p[3]); void SetXMin(double x, double y, double z); - void GetXMin(double p[3]); - void GetXMin(double& x, double& y, double& z); + void GetXMin(double p[3]) VTK_FUTURE_CONST; + void GetXMin(double& x, double& y, double& z) VTK_FUTURE_CONST; ///@} - void SetXMax(double p[3]); + void SetXMax(VTK_FUTURE_CONST double p[3]); void SetXMax(double x, double y, double z); - void GetXMax(double p[3]); - void GetXMax(double& x, double& y, double& z); + void GetXMax(double p[3]) VTK_FUTURE_CONST; + void GetXMax(double& x, double& y, double& z) VTK_FUTURE_CONST; void SetBounds(double xMin, double xMax, double yMin, double yMax, double zMin, double zMax); void SetBounds(const double bounds[6]); - void GetBounds( - double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, double& zMax); - void GetBounds(double bounds[6]); + void GetBounds(double& xMin, double& xMax, double& yMin, double& yMax, double& zMin, + double& zMax) VTK_FUTURE_CONST; + void GetBounds(double bounds[6]) VTK_FUTURE_CONST; double* GetBounds() VTK_SIZEHINT(6); /** @@ -160,12 +160,12 @@ private: void operator=(const vtkBox&) = delete; }; -inline void vtkBox::SetXMin(double p[3]) +inline void vtkBox::SetXMin(VTK_FUTURE_CONST double p[3]) { this->SetXMin(p[0], p[1], p[2]); } -inline void vtkBox::SetXMax(double p[3]) +inline void vtkBox::SetXMax(VTK_FUTURE_CONST double p[3]) { this->SetXMax(p[0], p[1], p[2]); } diff --git a/Common/DataModel/vtkCell.h b/Common/DataModel/vtkCell.h index 999a8ba66a2a1e32e7ab1c842e96de6316f7123a..e2a935ace587ff84ea235a439ea7a39c2c8fa774 100644 --- a/Common/DataModel/vtkCell.h +++ b/Common/DataModel/vtkCell.h @@ -92,7 +92,7 @@ public: * and connectivity list information. Most cells in VTK are implicit * cells. */ - virtual int IsLinear() { return 1; } + virtual int IsLinear() VTK_FUTURE_CONST { return 1; } /** * Some cells require initialization prior to access. For example, they @@ -106,14 +106,14 @@ public: * beyond the usual cell type and connectivity list information. * Most cells in VTK are implicit cells. */ - virtual int IsExplicitCell() { return 0; } + virtual int IsExplicitCell() VTK_FUTURE_CONST { return 0; } /** * Determine whether the cell requires explicit face representation, and * methods for setting and getting the faces (see vtkPolyhedron for example * usage of these methods). */ - virtual int RequiresExplicitFaceRepresentation() { return 0; } + virtual int RequiresExplicitFaceRepresentation() VTK_FUTURE_CONST { return 0; } VTK_DEPRECATED_IN_9_4_0("Use SetCellFaces() after casting the cell to vtkPolyhedron.") virtual void SetFaces(vtkIdType* vtkNotUsed(faces)) {} @@ -385,7 +385,7 @@ public: * primary cells (e.g., a triangle strip composite cell is made up of * triangle primary cells). */ - virtual int IsPrimaryCell() { return 1; } + virtual int IsPrimaryCell() VTK_FUTURE_CONST { return 1; } /** * Return a contiguous array of parametric coordinates of the points diff --git a/Common/DataModel/vtkCellGrid.h b/Common/DataModel/vtkCellGrid.h index 65b8f159644cf930ff9e24cba677d53242260351..e2df7978313a774b68fc0565a8dbbba966a5b1b6 100644 --- a/Common/DataModel/vtkCellGrid.h +++ b/Common/DataModel/vtkCellGrid.h @@ -58,7 +58,7 @@ public: * Return class name of data type. * THIS METHOD IS THREAD SAFE */ - int GetDataObjectType() override { return VTK_CELL_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_CELL_GRID; } /** * Return the actual size of the data in kibibytes (1024 bytes). This number diff --git a/Common/DataModel/vtkCellLinks.h b/Common/DataModel/vtkCellLinks.h index f3a4513bd9c381f896114d84ca717d13eb8ecd21..52b69e1a4ecbd5d24e7c4ebb0cac7f3100e8de4e 100644 --- a/Common/DataModel/vtkCellLinks.h +++ b/Common/DataModel/vtkCellLinks.h @@ -82,7 +82,7 @@ public: /** * Get the number of cells using the point specified by ptId. */ - vtkIdType GetNcells(vtkIdType ptId) { return this->Array[ptId].ncells; } + vtkIdType GetNcells(vtkIdType ptId) VTK_FUTURE_CONST { return this->Array[ptId].ncells; } /** * Return a list of cell ids using the point. diff --git a/Common/DataModel/vtkCompositeDataSet.h b/Common/DataModel/vtkCompositeDataSet.h index 9123eb60a5af293db8354ff3ad0e89e1401f862e..0f2fcfae1b7649c76a7d36e8d1b917c54e9578e0 100644 --- a/Common/DataModel/vtkCompositeDataSet.h +++ b/Common/DataModel/vtkCompositeDataSet.h @@ -50,7 +50,7 @@ public: * Return class name of data type (see vtkType.h for * definitions). */ - int GetDataObjectType() override { return VTK_COMPOSITE_DATA_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_COMPOSITE_DATA_SET; } /** * Copies the tree structure from the input. All pointers to non-composite diff --git a/Common/DataModel/vtkConvexPointSet.h b/Common/DataModel/vtkConvexPointSet.h index 8c554083c3c21a0627479e62178cf6c62e96c108..c6972a028dc50393b435ef68e3aabfe1ba42c245 100644 --- a/Common/DataModel/vtkConvexPointSet.h +++ b/Common/DataModel/vtkConvexPointSet.h @@ -192,7 +192,7 @@ public: * A convex point set is triangulated prior to any operations on it so * it is not a primary cell, it is a composite cell. */ - int IsPrimaryCell() override { return 0; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; } ///@{ /** diff --git a/Common/DataModel/vtkDataObject.h b/Common/DataModel/vtkDataObject.h index e07ac7682222ab6fefc02445613f0848323e27fc..ebbfc08b6956e7758c88f78802ee1e51d5ca4ad5 100644 --- a/Common/DataModel/vtkDataObject.h +++ b/Common/DataModel/vtkDataObject.h @@ -114,7 +114,7 @@ public: * VTK_RECTILINEAR_GRID (see vtkSetGet.h for definitions). * THIS METHOD IS THREAD SAFE */ - virtual int GetDataObjectType() { return VTK_DATA_OBJECT; } + virtual int GetDataObjectType() VTK_FUTURE_CONST { return VTK_DATA_OBJECT; } /** * Used by Threaded ports to determine if they should initiate an @@ -234,7 +234,7 @@ public: * and vtkStructuredGrid. The default is the have an extent in pieces, * with only one piece (no streaming possible). */ - virtual int GetExtentType() { return VTK_PIECES_EXTENT; } + virtual int GetExtentType() VTK_FUTURE_CONST { return VTK_PIECES_EXTENT; } /** * This method crops the data object (if necessary) so that the extent diff --git a/Common/DataModel/vtkDataObjectTree.h b/Common/DataModel/vtkDataObjectTree.h index fa259de02e4f0c608ffd9582660b20873cd6c934..a8022311af4711e059cd27010434aa227069fecb 100644 --- a/Common/DataModel/vtkDataObjectTree.h +++ b/Common/DataModel/vtkDataObjectTree.h @@ -169,7 +169,7 @@ public: /** * Overridden to return `VTK_DATA_OBJECT_TREE`. */ - int GetDataObjectType() override { return VTK_DATA_OBJECT_TREE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_DATA_OBJECT_TREE; } protected: vtkDataObjectTree(); diff --git a/Common/DataModel/vtkDataSet.h b/Common/DataModel/vtkDataSet.h index 439f29e575e6eda3f8c5a8795cfa3ba45cd3f1c7..ee34218cf0ba2d1521bae6bbd5c8a950f4c792af 100644 --- a/Common/DataModel/vtkDataSet.h +++ b/Common/DataModel/vtkDataSet.h @@ -414,7 +414,7 @@ public: /** * Return the type of data object. */ - int GetDataObjectType() override { return VTK_DATA_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_DATA_SET; } ///@{ /** diff --git a/Common/DataModel/vtkDirectedAcyclicGraph.h b/Common/DataModel/vtkDirectedAcyclicGraph.h index f9c778100aee648519bc265a113844d39fb733f4..17980039d757936d65e93a86b39aef84321ded58 100644 --- a/Common/DataModel/vtkDirectedAcyclicGraph.h +++ b/Common/DataModel/vtkDirectedAcyclicGraph.h @@ -46,7 +46,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_DIRECTED_ACYCLIC_GRAPH; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_DIRECTED_ACYCLIC_GRAPH; } ///@{ /** diff --git a/Common/DataModel/vtkDirectedGraph.h b/Common/DataModel/vtkDirectedGraph.h index ca2da0346f789ac4774d55d6f42ec7ce76094cb5..31258329f215015ba89a1576e9042701b02b5031 100644 --- a/Common/DataModel/vtkDirectedGraph.h +++ b/Common/DataModel/vtkDirectedGraph.h @@ -36,7 +36,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_DIRECTED_GRAPH; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_DIRECTED_GRAPH; } ///@{ /** diff --git a/Common/DataModel/vtkExplicitStructuredGrid.h b/Common/DataModel/vtkExplicitStructuredGrid.h index f1cf85c3286287d79bec772a9bd6e022db2de206..68c091e3cd2cfada18601f6d8ffa31569845b828 100644 --- a/Common/DataModel/vtkExplicitStructuredGrid.h +++ b/Common/DataModel/vtkExplicitStructuredGrid.h @@ -67,7 +67,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_EXPLICIT_STRUCTURED_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_EXPLICIT_STRUCTURED_GRID; } ///@{ /** @@ -128,7 +128,7 @@ public: /** * The extent type is a 3D extent */ - int GetExtentType() override { return VTK_3D_EXTENT; } + int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; } ///@{ /** diff --git a/Common/DataModel/vtkGenericCell.cxx b/Common/DataModel/vtkGenericCell.cxx index 2f6714d437f9276ea70834154afee6fffb1cdbef..f5605ce5b621354447e7216cdf49406ed51e99c8 100644 --- a/Common/DataModel/vtkGenericCell.cxx +++ b/Common/DataModel/vtkGenericCell.cxx @@ -116,7 +116,7 @@ int vtkGenericCell::GetCellDimension() } //------------------------------------------------------------------------------ -int vtkGenericCell::IsLinear() +int vtkGenericCell::IsLinear() VTK_FUTURE_CONST { return this->Cell->IsLinear(); } @@ -128,7 +128,7 @@ int vtkGenericCell::RequiresInitialization() } //------------------------------------------------------------------------------ -int vtkGenericCell::RequiresExplicitFaceRepresentation() +int vtkGenericCell::RequiresExplicitFaceRepresentation() VTK_FUTURE_CONST { return this->Cell->RequiresExplicitFaceRepresentation(); } @@ -295,7 +295,7 @@ double* vtkGenericCell::GetParametricCoords() } //------------------------------------------------------------------------------ -int vtkGenericCell::IsPrimaryCell() +int vtkGenericCell::IsPrimaryCell() VTK_FUTURE_CONST { return this->Cell->IsPrimaryCell(); } diff --git a/Common/DataModel/vtkGenericCell.h b/Common/DataModel/vtkGenericCell.h index 5b937096445ad8b3afd23c66e38c297b13e814ae..4403eeb61f3148f966e6c7fc9c1883f5bc9961b6 100644 --- a/Common/DataModel/vtkGenericCell.h +++ b/Common/DataModel/vtkGenericCell.h @@ -53,10 +53,10 @@ public: void DeepCopy(vtkCell* c) override; int GetCellType() override; int GetCellDimension() override; - int IsLinear() override; + int IsLinear() VTK_FUTURE_CONST override; int RequiresInitialization() override; void Initialize() override; - int RequiresExplicitFaceRepresentation() override; + int RequiresExplicitFaceRepresentation() VTK_FUTURE_CONST override; VTK_DEPRECATED_IN_9_4_0("Use SetCellFaces.") void SetFaces(vtkIdType* faces) override; VTK_DEPRECATED_IN_9_4_0("Use GetCellFaces.") @@ -87,7 +87,7 @@ public: int subId, const double pcoords[3], const double* values, int dim, double* derivs) override; int GetParametricCenter(double pcoords[3]) override; double* GetParametricCoords() override; - int IsPrimaryCell() override; + int IsPrimaryCell() VTK_FUTURE_CONST override; ///@} ///@{ diff --git a/Common/DataModel/vtkGenericDataSet.cxx b/Common/DataModel/vtkGenericDataSet.cxx index 2cb1f83002d0dd1e797720149c13beefe9747a49..5c70cdb5a1e94e97d34f7357715114486d0dd87d 100644 --- a/Common/DataModel/vtkGenericDataSet.cxx +++ b/Common/DataModel/vtkGenericDataSet.cxx @@ -206,7 +206,7 @@ unsigned long vtkGenericDataSet::GetActualMemorySize() //------------------------------------------------------------------------------ // Description: // Return the type of data object. -int vtkGenericDataSet::GetDataObjectType() +int vtkGenericDataSet::GetDataObjectType() VTK_FUTURE_CONST { return VTK_GENERIC_DATA_SET; } diff --git a/Common/DataModel/vtkGenericDataSet.h b/Common/DataModel/vtkGenericDataSet.h index 7637c23a70c9c42e8ff70ece7db10d1c4a8795f8..bf2a655f1bd7a39b6bb309ee0a875eee1139dba7 100644 --- a/Common/DataModel/vtkGenericDataSet.h +++ b/Common/DataModel/vtkGenericDataSet.h @@ -254,7 +254,7 @@ public: /** * Return the type of data object. */ - int GetDataObjectType() override; + int GetDataObjectType() VTK_FUTURE_CONST override; /** * Estimated size needed after tessellation (or special operation) diff --git a/Common/DataModel/vtkGraph.h b/Common/DataModel/vtkGraph.h index 09541548ba26ae4c23b1c65112ffa7af773d60c5..4caf78632f8905f42f0787cf603dcec15ac584e7 100644 --- a/Common/DataModel/vtkGraph.h +++ b/Common/DataModel/vtkGraph.h @@ -288,7 +288,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_GRAPH; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_GRAPH; } /** * Initialize to an empty graph. diff --git a/Common/DataModel/vtkHierarchicalBoxDataSet.h b/Common/DataModel/vtkHierarchicalBoxDataSet.h index a622b91adca3873477d82b0607baa76b40e555be..085047e78c50ebbf71ebe6258cf03c1d9762d832 100644 --- a/Common/DataModel/vtkHierarchicalBoxDataSet.h +++ b/Common/DataModel/vtkHierarchicalBoxDataSet.h @@ -39,7 +39,7 @@ public: /** * Return class name of data type (see vtkType.h for definitions). */ - int GetDataObjectType() override { return VTK_HIERARCHICAL_BOX_DATA_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_HIERARCHICAL_BOX_DATA_SET; } ///@{ /** diff --git a/Common/DataModel/vtkHyperTreeGrid.h b/Common/DataModel/vtkHyperTreeGrid.h index 8fdcfb4ddab87fbcf266d70b947d4894be3b3a8b..7bf0d037fee2e15f7fe7b867c7f71c46801b7197 100644 --- a/Common/DataModel/vtkHyperTreeGrid.h +++ b/Common/DataModel/vtkHyperTreeGrid.h @@ -114,7 +114,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_HYPER_TREE_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_HYPER_TREE_GRID; } /** * Copy the internal geometric and topological structure of a @@ -495,7 +495,7 @@ public: /** * Structured extent. The extent type is a 3D extent. */ - int GetExtentType() override { return VTK_3D_EXTENT; } + int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; } /** * Return the actual size of the data in bytes. This number diff --git a/Common/DataModel/vtkImageData.h b/Common/DataModel/vtkImageData.h index dd0cc6858ab92a57522b5f55eaaab557d0fd275f..a7bc1b03e0f8d2643f669256c838a9d61acde669 100644 --- a/Common/DataModel/vtkImageData.h +++ b/Common/DataModel/vtkImageData.h @@ -60,7 +60,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_IMAGE_DATA; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_IMAGE_DATA; } ///@{ /** @@ -658,7 +658,7 @@ public: /** * The extent type is a 3D extent */ - int GetExtentType() override { return VTK_3D_EXTENT; } + int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; } ///@{ /** diff --git a/Common/DataModel/vtkIncrementalOctreeNode.cxx b/Common/DataModel/vtkIncrementalOctreeNode.cxx index 840a7258bed7db9ba3a589a663f56085d6e65f7e..12cf1b5749bd16068a92ea7037adce221dbf7a60 100644 --- a/Common/DataModel/vtkIncrementalOctreeNode.cxx +++ b/Common/DataModel/vtkIncrementalOctreeNode.cxx @@ -495,10 +495,10 @@ double vtkIncrementalOctreeNode::GetDistance2ToBoundary(const double point[3], d { // It is mandatory that GetMinDataBounds() and GetMaxDataBounds() be used. // Direct access to MinDataBounds and MaxDataBounds might incur problems. - double* thisMin = nullptr; - double* thisMax = nullptr; - double* rootMin = nullptr; - double* rootMax = nullptr; + const double* thisMin = nullptr; + const double* thisMax = nullptr; + const double* rootMin = nullptr; + const double* rootMax = nullptr; double minDist = VTK_DOUBLE_MAX; // minimum distance to the boundaries if (checkData) { @@ -708,7 +708,7 @@ double vtkIncrementalOctreeNode::GetDistance2ToBoundary(const double point[3], d // 3: y-max face ===> xyzIndx = 1: y and minFace & 1 = 1: thisMax // 4: z-min face ===> xyzIndx = 2: z and minFace & 1 = 0: thisMin // 5: z-max face ===> xyzIndx = 2: z and minFace & 1 = 1: thisMax - double* pMinMax[2] = { thisMin, thisMax }; + const double* pMinMax[2] = { thisMin, thisMax }; int xyzIndx = (minFace >> 1); closest[xyzIndx] = pMinMax[minFace & 1][xyzIndx]; pMinMax[0] = pMinMax[1] = nullptr; diff --git a/Common/DataModel/vtkIncrementalOctreePointLocator.cxx b/Common/DataModel/vtkIncrementalOctreePointLocator.cxx index 77aeb8d129ac899cc6cd1fca859eef403c5f3e4f..eafcc0b56c15644522e2ab4cdb8847160ce37da1 100644 --- a/Common/DataModel/vtkIncrementalOctreePointLocator.cxx +++ b/Common/DataModel/vtkIncrementalOctreePointLocator.cxx @@ -199,8 +199,8 @@ void vtkIncrementalOctreePointLocator::GetBounds(double* bounds) { if (this->OctreeRootNode) { - double* minBounds = this->OctreeRootNode->GetMinBounds(); - double* maxBounds = this->OctreeRootNode->GetMaxBounds(); + const double* minBounds = this->OctreeRootNode->GetMinBounds(); + const double* maxBounds = this->OctreeRootNode->GetMaxBounds(); bounds[0] = minBounds[0]; bounds[1] = maxBounds[0]; bounds[2] = minBounds[1]; @@ -630,8 +630,8 @@ vtkIdType vtkIncrementalOctreePointLocator::FindClosestPoint(const double x[3], else // the point is outside the octree { double initialPt[3]; - double* minBounds = this->OctreeRootNode->GetMinBounds(); - double* maxBounds = this->OctreeRootNode->GetMaxBounds(); + const double* minBounds = this->OctreeRootNode->GetMinBounds(); + const double* maxBounds = this->OctreeRootNode->GetMaxBounds(); this->OctreeRootNode->GetDistance2ToBoundary(x, initialPt, this->OctreeRootNode, 1); // This initial (closest) point might be outside the octree a little bit diff --git a/Common/DataModel/vtkKdNode.cxx b/Common/DataModel/vtkKdNode.cxx index 71128f6737a0d343235686cd230faeefa7a03c11..9fc399a7156a1edccfc996028de752856afed3a0 100644 --- a/Common/DataModel/vtkKdNode.cxx +++ b/Common/DataModel/vtkKdNode.cxx @@ -113,7 +113,7 @@ void vtkKdNode::SetDataBounds(double x1, double x2, double y1, double y2, double } //------------------------------------------------------------------------------ -void vtkKdNode::SetDataBounds(float* v) +void vtkKdNode::SetDataBounds(VTK_FUTURE_CONST float* v) { int x; double newbounds[6]; diff --git a/Common/DataModel/vtkKdNode.h b/Common/DataModel/vtkKdNode.h index 2b6505f20b524eabba0a229a2871ba8b86f7b002..ede9c718bef3e2ea23ddd9150bcc2560ea2f2ad6 100644 --- a/Common/DataModel/vtkKdNode.h +++ b/Common/DataModel/vtkKdNode.h @@ -81,7 +81,7 @@ public: * Given a pointer to NumberOfPoints points, set the DataBounds of this * node to the bounds of these points. */ - void SetDataBounds(float* v); + void SetDataBounds(VTK_FUTURE_CONST float* v); /** * Get a pointer to the 3 bound minima (xmin, ymin and zmin) or the diff --git a/Common/DataModel/vtkKdTree.cxx b/Common/DataModel/vtkKdTree.cxx index fdaf94597886d798acbfce190765f04d3e7b5455..fca84a7381a3ea22cfceb8e9ad2eeb80b7e11cec 100644 --- a/Common/DataModel/vtkKdTree.cxx +++ b/Common/DataModel/vtkKdTree.cxx @@ -2211,8 +2211,8 @@ vtkIdType vtkKdTree::FindClosestPoint(double x, double y, double z, double& dist double pt[3]; this->Top->GetDistance2ToBoundary(x, y, z, pt, 1); - double* min = this->Top->GetMinBounds(); - double* max = this->Top->GetMaxBounds(); + const double* min = this->Top->GetMinBounds(); + const double* max = this->Top->GetMaxBounds(); // GetDistance2ToBoundary will sometimes return a point *just* // *barely* outside the bounds of the region. Move that point to @@ -3194,8 +3194,8 @@ void vtkKdTree::GenerateRepresentationWholeSpace(int level, vtkPolyData* pd) double x[3]; vtkKdNode* kd = this->Top; - double* min = kd->GetMinBounds(); - double* max = kd->GetMaxBounds(); + const double* min = kd->GetMinBounds(); + const double* max = kd->GetMaxBounds(); x[0] = min[0]; x[1] = max[1]; @@ -3298,9 +3298,9 @@ void vtkKdTree::_generateRepresentationWholeSpace( return; } - double* min = kd->GetMinBounds(); - double* max = kd->GetMaxBounds(); - double* leftmax = kd->GetLeft()->GetMaxBounds(); + const double* min = kd->GetMinBounds(); + const double* max = kd->GetMaxBounds(); + const double* leftmax = kd->GetLeft()->GetMaxBounds(); // splitting plane @@ -3435,8 +3435,8 @@ void vtkKdTree::AddPolys(vtkKdNode* kd, vtkPoints* pts, vtkCellArray* polys) vtkIdType idList[4]; double x[3]; - double* min; - double* max; + const double* min; + const double* max; if (this->GenerateRepresentationUsingDataBounds) { diff --git a/Common/DataModel/vtkMolecule.h b/Common/DataModel/vtkMolecule.h index 590a95dc3cfbe57b2d2bdb0bc945928ecb36d21d..270720e41b21807c550b197b7e1f0b44d62fb6f3 100644 --- a/Common/DataModel/vtkMolecule.h +++ b/Common/DataModel/vtkMolecule.h @@ -88,7 +88,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_MOLECULE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_MOLECULE; } /** * Add new atom with atomic number 0 (dummy atom) at origin. Return diff --git a/Common/DataModel/vtkMultiBlockDataSet.h b/Common/DataModel/vtkMultiBlockDataSet.h index 498015e4b5dcac0cebf52e11110d9d8a54dd5b07..726d8200f4d32d2b3877f5ab87e5d58220fdfd42 100644 --- a/Common/DataModel/vtkMultiBlockDataSet.h +++ b/Common/DataModel/vtkMultiBlockDataSet.h @@ -43,7 +43,7 @@ public: * Return class name of data type (see vtkType.h for * definitions). */ - int GetDataObjectType() override { return VTK_MULTIBLOCK_DATA_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_MULTIBLOCK_DATA_SET; } /** * Set the number of blocks. This will cause allocation if the new number of diff --git a/Common/DataModel/vtkMultiPieceDataSet.h b/Common/DataModel/vtkMultiPieceDataSet.h index 049f4d0c5a0c49af1931ebf02e960b862566e31b..b34bc9564a690c23919c99d62c4ca0ab6ea87413 100644 --- a/Common/DataModel/vtkMultiPieceDataSet.h +++ b/Common/DataModel/vtkMultiPieceDataSet.h @@ -39,7 +39,7 @@ public: * Return class name of data type (see vtkType.h for * definitions). */ - int GetDataObjectType() override { return VTK_MULTIPIECE_DATA_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_MULTIPIECE_DATA_SET; } /** * Set the number of pieces. This will cause allocation if the new number of diff --git a/Common/DataModel/vtkNonLinearCell.h b/Common/DataModel/vtkNonLinearCell.h index 088bedf65246b0d209dbc6fdcf5f5ba88c88fe09..dbfb4d4e5cc0a5ef449d8b0283d259f698bc0d98 100644 --- a/Common/DataModel/vtkNonLinearCell.h +++ b/Common/DataModel/vtkNonLinearCell.h @@ -33,7 +33,7 @@ public: * converting to graphics primitives (during mapping). The vtkCell * API IsLinear() is modified to indicate this requirement. */ - int IsLinear() override { return 0; } + int IsLinear() VTK_FUTURE_CONST override { return 0; } /** * Clip the cell based on the input cellScalars and the diff --git a/Common/DataModel/vtkNonOverlappingAMR.h b/Common/DataModel/vtkNonOverlappingAMR.h index be47678faa16815110feb6efcb17ef918be43199..653e0c771356be8c7bb179ea7fd8447de367f593 100644 --- a/Common/DataModel/vtkNonOverlappingAMR.h +++ b/Common/DataModel/vtkNonOverlappingAMR.h @@ -26,7 +26,7 @@ public: /** * Returns object type (see vtkType.h for definitions). */ - int GetDataObjectType() override { return VTK_NON_OVERLAPPING_AMR; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_NON_OVERLAPPING_AMR; } /** * Retrieve an instance of this class from an information object. diff --git a/Common/DataModel/vtkOctreePointLocatorNode.cxx b/Common/DataModel/vtkOctreePointLocatorNode.cxx index fd802700cc04ff63d4c172e58d9a4f7decc216cf..ef310c0ae4a5cdd7d99b60542521c358124047c8 100644 --- a/Common/DataModel/vtkOctreePointLocatorNode.cxx +++ b/Common/DataModel/vtkOctreePointLocatorNode.cxx @@ -98,7 +98,8 @@ vtkOctreePointLocatorNode* vtkOctreePointLocatorNode::GetChild(int i) } //------------------------------------------------------------------------------ -int vtkOctreePointLocatorNode::GetSubOctantIndex(double* point, int CheckContainment) +int vtkOctreePointLocatorNode::GetSubOctantIndex( + VTK_FUTURE_CONST double* point, int CheckContainment) { int i, index = 0; if (CheckContainment) diff --git a/Common/DataModel/vtkOctreePointLocatorNode.h b/Common/DataModel/vtkOctreePointLocatorNode.h index 4d5e95461015b74792ffab076a8ff19c47df25e5..322bd1cb8c30334a1b1024ab057a506146c2c19c 100644 --- a/Common/DataModel/vtkOctreePointLocatorNode.h +++ b/Common/DataModel/vtkOctreePointLocatorNode.h @@ -78,7 +78,7 @@ public: /** * Set the xmin, ymin and zmin value of the bounds of this region */ - void SetMinBounds(double minBounds[3]) + void SetMinBounds(VTK_FUTURE_CONST double minBounds[3]) { this->MinBounds[0] = minBounds[0]; this->MinBounds[1] = minBounds[1]; @@ -90,7 +90,7 @@ public: /** * Set the xmax, ymax and zmax value of the bounds of this region */ - void SetMaxBounds(double maxBounds[3]) + void SetMaxBounds(VTK_FUTURE_CONST double maxBounds[3]) { this->MaxBounds[0] = maxBounds[0]; this->MaxBounds[1] = maxBounds[1]; @@ -215,7 +215,7 @@ public: * that is created from the axis-aligned partitioning of * the domain at this octant's center. */ - int GetSubOctantIndex(double* point, int CheckContainment); + int GetSubOctantIndex(VTK_FUTURE_CONST double* point, int CheckContainment); /** * Recursive function to compute ID, MinVal, MaxVal, and MinID. diff --git a/Common/DataModel/vtkOverlappingAMR.h b/Common/DataModel/vtkOverlappingAMR.h index e33f36d775fdd9eba5628e77b5aa468a1a833e26..85e2b4ebef965b9f24cd12cfb16af57b96ce4a03 100644 --- a/Common/DataModel/vtkOverlappingAMR.h +++ b/Common/DataModel/vtkOverlappingAMR.h @@ -44,7 +44,7 @@ public: /** * Return class name of data type (see vtkType.h for definitions). */ - int GetDataObjectType() override { return VTK_OVERLAPPING_AMR; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_OVERLAPPING_AMR; } vtkTypeMacro(vtkOverlappingAMR, vtkUniformGridAMR); void PrintSelf(ostream& os, vtkIndent indent) override; diff --git a/Common/DataModel/vtkPartitionedDataSet.h b/Common/DataModel/vtkPartitionedDataSet.h index 0539c2cfad4ef1606212ed55bd8d3ea3499f599d..90464d4c2e898433fcb6a26873a929db6bba5950 100644 --- a/Common/DataModel/vtkPartitionedDataSet.h +++ b/Common/DataModel/vtkPartitionedDataSet.h @@ -44,7 +44,7 @@ public: * Return class name of data type (see vtkType.h for * definitions). */ - int GetDataObjectType() override { return VTK_PARTITIONED_DATA_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_PARTITIONED_DATA_SET; } /** * Set the number of partitions. This will cause allocation if the new number of diff --git a/Common/DataModel/vtkPartitionedDataSetCollection.h b/Common/DataModel/vtkPartitionedDataSetCollection.h index db3039409bfa74ad6b5a09324cc77fa7b1836fe1..2d24db875e0b22cd381f2c8558890785f2dc98ff 100644 --- a/Common/DataModel/vtkPartitionedDataSetCollection.h +++ b/Common/DataModel/vtkPartitionedDataSetCollection.h @@ -36,7 +36,7 @@ public: * Return class name of data type (see vtkType.h for * definitions). */ - int GetDataObjectType() override { return VTK_PARTITIONED_DATA_SET_COLLECTION; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_PARTITIONED_DATA_SET_COLLECTION; } /** * Set the number of blocks. This will cause allocation if the new number of diff --git a/Common/DataModel/vtkPath.h b/Common/DataModel/vtkPath.h index b74cc1abe28c26cde43332a50d275937e8cb62f9..21c3efb5a57c085ccd4ca5a3d1ac24019d432609 100644 --- a/Common/DataModel/vtkPath.h +++ b/Common/DataModel/vtkPath.h @@ -29,7 +29,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_PATH; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_PATH; } /** * Enumeration of recognized control point types: diff --git a/Common/DataModel/vtkPiecewiseFunction.h b/Common/DataModel/vtkPiecewiseFunction.h index 80f99aa575cfe1c811665a85b1d28d184a5aed6b..83cc9ca77ead421078ac8be13b3d014aef3484b3 100644 --- a/Common/DataModel/vtkPiecewiseFunction.h +++ b/Common/DataModel/vtkPiecewiseFunction.h @@ -52,7 +52,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_PIECEWISE_FUNCTION; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_PIECEWISE_FUNCTION; } /** * Get the number of points used to specify the function diff --git a/Common/DataModel/vtkPointSet.h b/Common/DataModel/vtkPointSet.h index a6cba0d53dcdc9e80b26deaf65c5669a9a13cb8b..2e3af081220ebbae4ee61ee4e086a9533dfdade5 100644 --- a/Common/DataModel/vtkPointSet.h +++ b/Common/DataModel/vtkPointSet.h @@ -72,7 +72,7 @@ public: /** * Standard vtkDataSet API methods. See vtkDataSet for more information. */ - int GetDataObjectType() override { return VTK_POINT_SET; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_POINT_SET; } ///@{ /** diff --git a/Common/DataModel/vtkPolyData.h b/Common/DataModel/vtkPolyData.h index bd84168a0da94c05b0e36fe69068da43459b48e5..1f28b53db380ea8739521837c1e3d3bb7bd97e7b 100644 --- a/Common/DataModel/vtkPolyData.h +++ b/Common/DataModel/vtkPolyData.h @@ -74,7 +74,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_POLY_DATA; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_POLY_DATA; } /** * Copy the geometric and topological structure of an input poly data object. diff --git a/Common/DataModel/vtkPolyLine.h b/Common/DataModel/vtkPolyLine.h index 8c18cd5152d6fb7db10f5e04b744cae95cef5a1f..778a2a9a61c7479703b6d563b42b70392955bedc 100644 --- a/Common/DataModel/vtkPolyLine.h +++ b/Common/DataModel/vtkPolyLine.h @@ -72,7 +72,7 @@ public: int TriangulateLocalIds(int index, vtkIdList* ptIds) override; void Derivatives( int subId, const double pcoords[3], const double* values, int dim, double* derivs) override; - int IsPrimaryCell() override { return 0; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; } ///@} /** diff --git a/Common/DataModel/vtkPolyVertex.h b/Common/DataModel/vtkPolyVertex.h index 9b083e3e20171e98deb753dd47c004c48c7e6bec..034758114ecbc3dfa5a23b45e22bcaa1aed62154 100644 --- a/Common/DataModel/vtkPolyVertex.h +++ b/Common/DataModel/vtkPolyVertex.h @@ -50,7 +50,7 @@ public: int TriangulateLocalIds(int index, vtkIdList* ptIds) override; void Derivatives( int subId, const double pcoords[3], const double* values, int dim, double* derivs) override; - int IsPrimaryCell() override { return 0; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; } ///@} /** diff --git a/Common/DataModel/vtkPolygon.h b/Common/DataModel/vtkPolygon.h index 300677638dec98590c461602db3d3691aaa11984..44910164933eb391ffafb9c3f87fe051696ec8c4 100644 --- a/Common/DataModel/vtkPolygon.h +++ b/Common/DataModel/vtkPolygon.h @@ -57,7 +57,7 @@ public: int TriangulateLocalIds(int index, vtkIdList* ptIds) override; void Derivatives( int subId, const double pcoords[3], const double* values, int dim, double* derivs) override; - int IsPrimaryCell() override { return 0; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; } ///@} /** diff --git a/Common/DataModel/vtkPolyhedron.h b/Common/DataModel/vtkPolyhedron.h index f9f87558414cc955c4ffc0456ba65416b01ac604..e67583c4094cc429a4f61d5f07482bae3d97bf83 100644 --- a/Common/DataModel/vtkPolyhedron.h +++ b/Common/DataModel/vtkPolyhedron.h @@ -337,7 +337,7 @@ public: /** * A polyhedron is a full-fledged primary cell. */ - int IsPrimaryCell() override { return 1; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 1; } ///@{ /** @@ -354,7 +354,7 @@ public: * needs explicit faces definition in order to describe the topology * of the cell. */ - int RequiresExplicitFaceRepresentation() override { return 1; } + int RequiresExplicitFaceRepresentation() VTK_FUTURE_CONST override { return 1; } /** * Set the faces of the polyhedron. diff --git a/Common/DataModel/vtkQuadraticPolygon.h b/Common/DataModel/vtkQuadraticPolygon.h index b0b467665e7009bc88a95b7df0cec4173ff56a6c..fb15aba058b97230856ac42db50cc85107b2481b 100644 --- a/Common/DataModel/vtkQuadraticPolygon.h +++ b/Common/DataModel/vtkQuadraticPolygon.h @@ -46,7 +46,7 @@ public: int GetNumberOfFaces() override { return 0; } vtkCell* GetEdge(int) override; vtkCell* GetFace(int) override { return nullptr; } - int IsPrimaryCell() override { return 0; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; } ///@{ /** diff --git a/Common/DataModel/vtkRectilinearGrid.h b/Common/DataModel/vtkRectilinearGrid.h index dc0d675febf06e1cd9efa5872fe4b4bd86e40486..79a3656a4c268a87c166ec8175c150581720bdf3 100644 --- a/Common/DataModel/vtkRectilinearGrid.h +++ b/Common/DataModel/vtkRectilinearGrid.h @@ -47,7 +47,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_RECTILINEAR_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_RECTILINEAR_GRID; } /** * Copy the geometric and topological structure of an input rectilinear grid @@ -278,7 +278,7 @@ public: /** * Structured extent. The extent type is a 3D extent */ - int GetExtentType() override { return VTK_3D_EXTENT; } + int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; } /** * Reallocates and copies to set the Extent to the UpdateExtent. diff --git a/Common/DataModel/vtkReebGraph.h b/Common/DataModel/vtkReebGraph.h index 5bee6b26b8e6554f7bb3773cfdef057884434a31..8f9a8c46a2c2f6083135134ac400d5df4fb91ca4 100644 --- a/Common/DataModel/vtkReebGraph.h +++ b/Common/DataModel/vtkReebGraph.h @@ -130,7 +130,7 @@ public: * VTK_RECTILINEAR_GRID (see vtkSetGet.h for definitions). * THIS METHOD IS THREAD SAFE */ - int GetDataObjectType() override { return VTK_REEB_GRAPH; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_REEB_GRAPH; } enum { diff --git a/Common/DataModel/vtkSelection.h b/Common/DataModel/vtkSelection.h index 9f4e18b1f294cc8a911b96ee6fb9c713038f37ad..6c65db1c02756f94137fc8228d015c07686574d9 100644 --- a/Common/DataModel/vtkSelection.h +++ b/Common/DataModel/vtkSelection.h @@ -55,7 +55,7 @@ public: /** * Returns VTK_SELECTION enumeration value. */ - int GetDataObjectType() override { return VTK_SELECTION; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_SELECTION; } /** * Returns the number of nodes in this selection. diff --git a/Common/DataModel/vtkStaticCellLinks.h b/Common/DataModel/vtkStaticCellLinks.h index d923dabd046dde48b01669364fd65224cfcc111e..6d9607c4d435f038d3a4f058f726ea9d8e2efa20 100644 --- a/Common/DataModel/vtkStaticCellLinks.h +++ b/Common/DataModel/vtkStaticCellLinks.h @@ -65,7 +65,10 @@ public: * Get the number of cells using the point specified by ptId. This is an * alias for GetNumberOfCells(); consistent with the vtkCellLinks API. */ - vtkIdType GetNcells(vtkIdType ptId) { return this->Impl->GetNumberOfCells(ptId); } + vtkIdType GetNcells(vtkIdType ptId) VTK_FUTURE_CONST + { + return this->Impl->GetNumberOfCells(ptId); + } /** * Return a list of cell ids using the specified point. diff --git a/Common/DataModel/vtkStaticCellLinksTemplate.h b/Common/DataModel/vtkStaticCellLinksTemplate.h index adbe026658e9f4fa45598012a9146082169ed3ae..d54c07e61a721bf27a6e3db555d989a8f71b37ae 100644 --- a/Common/DataModel/vtkStaticCellLinksTemplate.h +++ b/Common/DataModel/vtkStaticCellLinksTemplate.h @@ -127,7 +127,10 @@ public: * Get the number of cells using the point specified by ptId. */ TIds GetNumberOfCells(vtkIdType ptId) { return (this->Offsets[ptId + 1] - this->Offsets[ptId]); } - vtkIdType GetNcells(vtkIdType ptId) { return (this->Offsets[ptId + 1] - this->Offsets[ptId]); } + vtkIdType GetNcells(vtkIdType ptId) VTK_FUTURE_CONST + { + return (this->Offsets[ptId + 1] - this->Offsets[ptId]); + } ///@} /** diff --git a/Common/DataModel/vtkStructuredGrid.h b/Common/DataModel/vtkStructuredGrid.h index 7cb5d670eb0045d3ac0af156a6dd6a5ab2b8dda9..402e166daa65aff4f603761a075375427c8745c0 100644 --- a/Common/DataModel/vtkStructuredGrid.h +++ b/Common/DataModel/vtkStructuredGrid.h @@ -55,7 +55,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_STRUCTURED_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_STRUCTURED_GRID; } /** * Copy the geometric and topological structure of an input poly data object. @@ -229,7 +229,7 @@ public: /** * The extent type is a 3D extent */ - int GetExtentType() override { return VTK_3D_EXTENT; } + int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; } /** * Reallocates and copies to set the Extent to the UpdateExtent. diff --git a/Common/DataModel/vtkStructuredPoints.h b/Common/DataModel/vtkStructuredPoints.h index 4900a9e42701cf4afd18adb9cdd7d7e308d19ebc..5b1d521efbf3902e964a597abb077194cce59725 100644 --- a/Common/DataModel/vtkStructuredPoints.h +++ b/Common/DataModel/vtkStructuredPoints.h @@ -31,7 +31,7 @@ public: /** * To simplify filter superclasses, */ - int GetDataObjectType() override { return VTK_STRUCTURED_POINTS; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_STRUCTURED_POINTS; } protected: vtkStructuredPoints(); diff --git a/Common/DataModel/vtkTable.h b/Common/DataModel/vtkTable.h index d0d42435b4852433bc340383562f46a1d996b802..45a50bbf50ff8246ea46c3197ec5522c0f0b8e58 100644 --- a/Common/DataModel/vtkTable.h +++ b/Common/DataModel/vtkTable.h @@ -69,7 +69,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_TABLE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_TABLE; } /** * Return the actual size of the data in kibibytes (1024 bytes). This number diff --git a/Common/DataModel/vtkTree.h b/Common/DataModel/vtkTree.h index b83bdbe8652355773ce1c4c3533520a7c4e680b9..954227d6ef7add41e73c5c739a0c25d2ada82e89 100644 --- a/Common/DataModel/vtkTree.h +++ b/Common/DataModel/vtkTree.h @@ -46,7 +46,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_TREE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_TREE; } ///@{ /** diff --git a/Common/DataModel/vtkTriangleStrip.h b/Common/DataModel/vtkTriangleStrip.h index 249436baec1dffaac4d95eb5f9b4f672c820302b..38bcfce650f7845d672681599e5ca15e4aa135c0 100644 --- a/Common/DataModel/vtkTriangleStrip.h +++ b/Common/DataModel/vtkTriangleStrip.h @@ -57,7 +57,7 @@ public: int TriangulateLocalIds(int index, vtkIdList* ptIds) override; void Derivatives( int subId, const double pcoords[3], const double* values, int dim, double* derivs) override; - int IsPrimaryCell() override { return 0; } + int IsPrimaryCell() VTK_FUTURE_CONST override { return 0; } /** * Return the center of the point cloud in parametric coordinates. diff --git a/Common/DataModel/vtkUndirectedGraph.h b/Common/DataModel/vtkUndirectedGraph.h index 73e336151000b14b7d5bda3e1b192a41c1d63075..944010a7154b41a1a5f2fa4a746db6bb1f1d9869 100644 --- a/Common/DataModel/vtkUndirectedGraph.h +++ b/Common/DataModel/vtkUndirectedGraph.h @@ -40,7 +40,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_UNDIRECTED_GRAPH; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNDIRECTED_GRAPH; } /** * Returns the full degree of the vertex. diff --git a/Common/DataModel/vtkUniformGrid.h b/Common/DataModel/vtkUniformGrid.h index d9c058da23f12818e0e752ee2e9a2997f9dea8cb..220e46c94cef04a0697cc4242c888aa6e9061470 100644 --- a/Common/DataModel/vtkUniformGrid.h +++ b/Common/DataModel/vtkUniformGrid.h @@ -40,7 +40,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_UNIFORM_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNIFORM_GRID; } ///@{ /** diff --git a/Common/DataModel/vtkUniformGridAMR.h b/Common/DataModel/vtkUniformGridAMR.h index 839b1c5618cae4ba0820610652a67c70d7dca146..65dd225b45d39047756f9569ef8f70c992ca8c1a 100644 --- a/Common/DataModel/vtkUniformGridAMR.h +++ b/Common/DataModel/vtkUniformGridAMR.h @@ -40,7 +40,7 @@ public: /** * Return class name of data type (see vtkType.h for definitions). */ - int GetDataObjectType() override { return VTK_UNIFORM_GRID_AMR; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNIFORM_GRID_AMR; } /** * Restore data object to initial state. diff --git a/Common/DataModel/vtkUniformHyperTreeGrid.h b/Common/DataModel/vtkUniformHyperTreeGrid.h index 82d017b6a01b1f964e860b7f1262658955b26b39..a6b7affc821389c5d967e52bdab9c10d75b72246 100644 --- a/Common/DataModel/vtkUniformHyperTreeGrid.h +++ b/Common/DataModel/vtkUniformHyperTreeGrid.h @@ -40,7 +40,7 @@ public: /** * Return what type of dataset this is. */ - int GetDataObjectType() override { return VTK_UNIFORM_HYPER_TREE_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNIFORM_HYPER_TREE_GRID; } /** * Copy the internal geometric and topological structure of a diff --git a/Common/DataModel/vtkUnstructuredGrid.h b/Common/DataModel/vtkUnstructuredGrid.h index 7c328951d9159aa2d93ca0856d85313d500922ba..fe48cf647391544c9563cfe9cad229bdcaa199e6 100644 --- a/Common/DataModel/vtkUnstructuredGrid.h +++ b/Common/DataModel/vtkUnstructuredGrid.h @@ -53,7 +53,7 @@ public: /** * Standard vtkDataSet API methods. See vtkDataSet for more information. */ - int GetDataObjectType() override { return VTK_UNSTRUCTURED_GRID; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNSTRUCTURED_GRID; } /** * @brief Pre-allocate memory in internal data structures. Does not change diff --git a/Common/DataModel/vtkUnstructuredGridBase.h b/Common/DataModel/vtkUnstructuredGridBase.h index 370a72e4a7c434a5f88f29981b353b572b20a66e..c12304998bb9269357c0cab767381dc1da67cfe9 100644 --- a/Common/DataModel/vtkUnstructuredGridBase.h +++ b/Common/DataModel/vtkUnstructuredGridBase.h @@ -32,7 +32,7 @@ public: this->Superclass::PrintSelf(os, indent); } - int GetDataObjectType() override { return VTK_UNSTRUCTURED_GRID_BASE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNSTRUCTURED_GRID_BASE; } /** * Allocate memory for the number of cells indicated. extSize is not used. diff --git a/Domains/Chemistry/vtkOpenQubeElectronicData.h b/Domains/Chemistry/vtkOpenQubeElectronicData.h index 1da0fdf54a7cc43f81fa932eadd51fa994a6ae45..442038f02bb445b3d6a6db410970b83d4a13ed6f 100644 --- a/Domains/Chemistry/vtkOpenQubeElectronicData.h +++ b/Domains/Chemistry/vtkOpenQubeElectronicData.h @@ -34,7 +34,7 @@ public: /** * Returns `VTK_OPEN_QUBE_ELECTRONIC_DATA`. */ - int GetDataObjectType() override { return VTK_OPEN_QUBE_ELECTRONIC_DATA; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_OPEN_QUBE_ELECTRONIC_DATA; } /** * Returns the number of molecular orbitals in the OpenQube::BasisSet. diff --git a/Filters/Parallel/vtkPKdTree.cxx b/Filters/Parallel/vtkPKdTree.cxx index 6322ee8ddf44a2f0906c318d11feeefd753924ed..8c3a8c3260761bb5033d41ecd92310d211b4959f 100644 --- a/Filters/Parallel/vtkPKdTree.cxx +++ b/Filters/Parallel/vtkPKdTree.cxx @@ -1876,8 +1876,8 @@ void vtkPKdTree::GetLocalMinMax(int L, int R, int me, float* min, float* max) // this guy has none of the data, but still must participate // in ReduceMax and ReduceMin - double* regionMin = this->Top->GetMinBounds(); - double* regionMax = this->Top->GetMaxBounds(); + const double* regionMin = this->Top->GetMinBounds(); + const double* regionMax = this->Top->GetMaxBounds(); for (d = 0; d < 3; d++) { @@ -1979,14 +1979,14 @@ void vtkPKdTree::PackData(vtkKdNode* kd, double* data) data[1] = (double)kd->GetLeft()->GetNumberOfPoints(); data[2] = (double)kd->GetRight()->GetNumberOfPoints(); - double* lmin = kd->GetLeft()->GetMinBounds(); - double* lmax = kd->GetLeft()->GetMaxBounds(); - double* lminData = kd->GetLeft()->GetMinDataBounds(); - double* lmaxData = kd->GetLeft()->GetMaxDataBounds(); - double* rmin = kd->GetRight()->GetMinBounds(); - double* rmax = kd->GetRight()->GetMaxBounds(); - double* rminData = kd->GetRight()->GetMinDataBounds(); - double* rmaxData = kd->GetRight()->GetMaxDataBounds(); + const double* lmin = kd->GetLeft()->GetMinBounds(); + const double* lmax = kd->GetLeft()->GetMaxBounds(); + const double* lminData = kd->GetLeft()->GetMinDataBounds(); + const double* lmaxData = kd->GetLeft()->GetMaxDataBounds(); + const double* rmin = kd->GetRight()->GetMinBounds(); + const double* rmax = kd->GetRight()->GetMaxBounds(); + const double* rminData = kd->GetRight()->GetMinDataBounds(); + const double* rmaxData = kd->GetRight()->GetMaxDataBounds(); v = 3; for (i = 0; i < 3; i++) @@ -2126,8 +2126,8 @@ void vtkPKdTree::CheckFixRegionBoundaries(vtkKdNode* tree) vtkKdNode* left = tree->GetLeft(); vtkKdNode* right = tree->GetRight(); - double* min = tree->GetMinBounds(); - double* max = tree->GetMaxBounds(); + const double* min = tree->GetMinBounds(); + const double* max = tree->GetMaxBounds(); double* lmin = left->GetMinBounds(); double* lmax = left->GetMaxBounds(); double* rmin = right->GetMinBounds(); diff --git a/IO/GeoJSON/vtkGeoJSONFeature.h b/IO/GeoJSON/vtkGeoJSONFeature.h index c0f55ea4c8ed0c9054cde8ac32c3b88242233b5c..6c7e730b149534ffb2951b737399a0c53af590fa 100644 --- a/IO/GeoJSON/vtkGeoJSONFeature.h +++ b/IO/GeoJSON/vtkGeoJSONFeature.h @@ -38,7 +38,7 @@ public: /** * Returns `VTK_GEO_JSON_FEATURE`. */ - int GetDataObjectType() override { return VTK_GEO_JSON_FEATURE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_GEO_JSON_FEATURE; } ///@{ /** diff --git a/Imaging/Core/vtkImageStencilData.h b/Imaging/Core/vtkImageStencilData.h index cfce63cd8b16b54e1db4679e229c9c2eed54326d..82aa61919eae777591a168cededc0b3cc72a66bb 100644 --- a/Imaging/Core/vtkImageStencilData.h +++ b/Imaging/Core/vtkImageStencilData.h @@ -34,12 +34,12 @@ public: /** * Returns `VTK_IMAGE_STENCIL_DATA`. */ - int GetDataObjectType() override { return VTK_IMAGE_STENCIL_DATA; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_IMAGE_STENCIL_DATA; } /** * The extent type is 3D, just like vtkImageData. */ - int GetExtentType() override { return VTK_3D_EXTENT; } + int GetExtentType() VTK_FUTURE_CONST override { return VTK_3D_EXTENT; } /** * Given the total output x extent [xMin,xMax] and the current y, z indices, diff --git a/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.cxx b/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.cxx index 826ef98e5fcd224126d5ecb45bbfebf48ec60309..d62846be6b13d43a1fe275de50086feeeebdcc9f 100644 --- a/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.cxx +++ b/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.cxx @@ -57,7 +57,7 @@ void vtkBoostRandomSparseArraySource::SetExtents(const vtkArrayExtents& extents) this->Modified(); } -vtkArrayExtents vtkBoostRandomSparseArraySource::GetExtents() +vtkArrayExtents vtkBoostRandomSparseArraySource::GetExtents() VTK_FUTURE_CONST { return this->Extents; } diff --git a/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.h b/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.h index 6fbcf09f61188e62fdf9a888db66dda34aeeaf1b..d4fe7eb506dc2193134a2c9afb672710a38a26e3 100644 --- a/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.h +++ b/Infovis/BoostGraphAlgorithms/vtkBoostRandomSparseArraySource.h @@ -34,7 +34,7 @@ public: /** * Returns the extents (dimensionality and size) of the output array */ - vtkArrayExtents GetExtents(); + vtkArrayExtents GetExtents() VTK_FUTURE_CONST; ///@{ /** diff --git a/Infovis/Core/vtkMergeTables.cxx b/Infovis/Core/vtkMergeTables.cxx index 1303e648a5fe14c7405d22058fac897e20906310..8109bf17a3339f2f3c191eaea978ec71cd8d3b20 100644 --- a/Infovis/Core/vtkMergeTables.cxx +++ b/Infovis/Core/vtkMergeTables.cxx @@ -67,8 +67,8 @@ int vtkMergeTables::RequestData( char* newName = name; if (this->PrefixAllButMerged) { - int len = static_cast<int>(strlen(name)); - int prefixLen = static_cast<int>(strlen(this->FirstTablePrefix)); + size_t len = strlen(name); + size_t prefixLen = strlen(this->FirstTablePrefix); newName = new char[prefixLen + len + 1]; strcpy(newName, this->FirstTablePrefix); strcat(newName, name); @@ -104,7 +104,7 @@ int vtkMergeTables::RequestData( { // We have a naming conflict. // Rename both columns using the prefixes. - int len = static_cast<int>(strlen(name)); + size_t len = strlen(name); char* newName1 = new char[len + strlen(this->FirstTablePrefix) + 1]; strcpy(newName1, this->FirstTablePrefix); strcat(newName1, name); @@ -128,8 +128,8 @@ int vtkMergeTables::RequestData( char* newName = name; if (this->PrefixAllButMerged) { - int len = static_cast<int>(strlen(name)); - int prefixLen = static_cast<int>(strlen(this->SecondTablePrefix)); + size_t len = strlen(name); + size_t prefixLen = strlen(this->SecondTablePrefix); newName = new char[prefixLen + len + 1]; strcpy(newName, this->SecondTablePrefix); strcat(newName, name); diff --git a/Interaction/Widgets/vtkAngleRepresentation.h b/Interaction/Widgets/vtkAngleRepresentation.h index 0bbf44f2620d0be9e80790d7ba62623f474b08f6..ae4a53745557ea13f3653ea6672dfb83ab140988 100644 --- a/Interaction/Widgets/vtkAngleRepresentation.h +++ b/Interaction/Widgets/vtkAngleRepresentation.h @@ -49,15 +49,15 @@ public: * this representation. Note that methods are available for both * display and world coordinates. */ - virtual void GetPoint1WorldPosition(double pos[3]) = 0; - virtual void GetCenterWorldPosition(double pos[3]) = 0; - virtual void GetPoint2WorldPosition(double pos[3]) = 0; + virtual void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST = 0; + virtual void GetCenterWorldPosition(double pos[3]) VTK_FUTURE_CONST = 0; + virtual void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST = 0; virtual void SetPoint1DisplayPosition(double pos[3]) = 0; virtual void SetCenterDisplayPosition(double pos[3]) = 0; virtual void SetPoint2DisplayPosition(double pos[3]) = 0; - virtual void GetPoint1DisplayPosition(double pos[3]) = 0; - virtual void GetCenterDisplayPosition(double pos[3]) = 0; - virtual void GetPoint2DisplayPosition(double pos[3]) = 0; + virtual void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST = 0; + virtual void GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST = 0; + virtual void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST = 0; ///@} ///@{ diff --git a/Interaction/Widgets/vtkAngleRepresentation2D.cxx b/Interaction/Widgets/vtkAngleRepresentation2D.cxx index 99655dc5d78fefbd8f500147808a010b351dabb1..1fee9f065d0d499added48e901a9a123e45855d3 100644 --- a/Interaction/Widgets/vtkAngleRepresentation2D.cxx +++ b/Interaction/Widgets/vtkAngleRepresentation2D.cxx @@ -47,7 +47,7 @@ double vtkAngleRepresentation2D::GetAngle() } //------------------------------------------------------------------------------ -void vtkAngleRepresentation2D::GetPoint1WorldPosition(double pos[3]) +void vtkAngleRepresentation2D::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -60,7 +60,7 @@ void vtkAngleRepresentation2D::GetPoint1WorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation2D::GetCenterWorldPosition(double pos[3]) +void vtkAngleRepresentation2D::GetCenterWorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->CenterRepresentation) { @@ -73,7 +73,7 @@ void vtkAngleRepresentation2D::GetCenterWorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation2D::GetPoint2WorldPosition(double pos[3]) +void vtkAngleRepresentation2D::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { @@ -167,7 +167,7 @@ void vtkAngleRepresentation2D::SetPoint2WorldPosition(double x[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation2D::GetPoint1DisplayPosition(double pos[3]) +void vtkAngleRepresentation2D::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -181,7 +181,7 @@ void vtkAngleRepresentation2D::GetPoint1DisplayPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation2D::GetCenterDisplayPosition(double pos[3]) +void vtkAngleRepresentation2D::GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->CenterRepresentation) { @@ -195,7 +195,7 @@ void vtkAngleRepresentation2D::GetCenterDisplayPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation2D::GetPoint2DisplayPosition(double pos[3]) +void vtkAngleRepresentation2D::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { diff --git a/Interaction/Widgets/vtkAngleRepresentation2D.h b/Interaction/Widgets/vtkAngleRepresentation2D.h index b9077a8e2f2b567071cecb25a1a152f459a2e7ee..63dc9f78b8654f27fa5c8b1de6dcb0d615bcfd25 100644 --- a/Interaction/Widgets/vtkAngleRepresentation2D.h +++ b/Interaction/Widgets/vtkAngleRepresentation2D.h @@ -54,18 +54,18 @@ public: * this representation. Note that methods are available for both * display and world coordinates. */ - void GetPoint1WorldPosition(double pos[3]) override; - void GetCenterWorldPosition(double pos[3]) override; - void GetPoint2WorldPosition(double pos[3]) override; + void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetCenterWorldPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST override; void SetPoint1DisplayPosition(double pos[3]) override; void SetPoint1WorldPosition(double pos[3]); void SetCenterDisplayPosition(double pos[3]) override; void SetCenterWorldPosition(double pos[3]); void SetPoint2DisplayPosition(double pos[3]) override; void SetPoint2WorldPosition(double pos[3]); - void GetPoint1DisplayPosition(double pos[3]) override; - void GetCenterDisplayPosition(double pos[3]) override; - void GetPoint2DisplayPosition(double pos[3]) override; + void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; ///@} ///@{ diff --git a/Interaction/Widgets/vtkAngleRepresentation3D.cxx b/Interaction/Widgets/vtkAngleRepresentation3D.cxx index e582dbe9ecc22a177abf442d02ffa5dac45ee1ca..453d4db93c0b37cd3de0ef14f084fb4ad8d90da0 100644 --- a/Interaction/Widgets/vtkAngleRepresentation3D.cxx +++ b/Interaction/Widgets/vtkAngleRepresentation3D.cxx @@ -89,7 +89,7 @@ double vtkAngleRepresentation3D::GetAngle() } //------------------------------------------------------------------------------ -void vtkAngleRepresentation3D::GetPoint1WorldPosition(double pos[3]) +void vtkAngleRepresentation3D::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -102,7 +102,7 @@ void vtkAngleRepresentation3D::GetPoint1WorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation3D::GetCenterWorldPosition(double pos[3]) +void vtkAngleRepresentation3D::GetCenterWorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->CenterRepresentation) { @@ -115,7 +115,7 @@ void vtkAngleRepresentation3D::GetCenterWorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation3D::GetPoint2WorldPosition(double pos[3]) +void vtkAngleRepresentation3D::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { @@ -203,7 +203,7 @@ void vtkAngleRepresentation3D::SetPoint2DisplayPosition(double x[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation3D::GetPoint1DisplayPosition(double pos[3]) +void vtkAngleRepresentation3D::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -217,7 +217,7 @@ void vtkAngleRepresentation3D::GetPoint1DisplayPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation3D::GetCenterDisplayPosition(double pos[3]) +void vtkAngleRepresentation3D::GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->CenterRepresentation) { @@ -231,7 +231,7 @@ void vtkAngleRepresentation3D::GetCenterDisplayPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkAngleRepresentation3D::GetPoint2DisplayPosition(double pos[3]) +void vtkAngleRepresentation3D::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { diff --git a/Interaction/Widgets/vtkAngleRepresentation3D.h b/Interaction/Widgets/vtkAngleRepresentation3D.h index 46983616112183fa4c3ffe259e7c71fcd35fe266..b5f0d159bd6cd0d39ee5072fbe8cb362b62661f5 100644 --- a/Interaction/Widgets/vtkAngleRepresentation3D.h +++ b/Interaction/Widgets/vtkAngleRepresentation3D.h @@ -60,18 +60,18 @@ public: * this representation. Note that methods are available for both * display and world coordinates. */ - void GetPoint1WorldPosition(double pos[3]) override; - void GetCenterWorldPosition(double pos[3]) override; - void GetPoint2WorldPosition(double pos[3]) override; + void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetCenterWorldPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST override; virtual void SetPoint1WorldPosition(double pos[3]); void SetPoint1DisplayPosition(double pos[3]) override; virtual void SetCenterWorldPosition(double pos[3]); void SetCenterDisplayPosition(double pos[3]) override; virtual void SetPoint2WorldPosition(double pos[3]); void SetPoint2DisplayPosition(double pos[3]) override; - void GetPoint1DisplayPosition(double pos[3]) override; - void GetCenterDisplayPosition(double pos[3]) override; - void GetPoint2DisplayPosition(double pos[3]) override; + void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetCenterDisplayPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; ///@} ///@{ diff --git a/Interaction/Widgets/vtkBiDimensionalRepresentation.cxx b/Interaction/Widgets/vtkBiDimensionalRepresentation.cxx index bdcb220b5974d26a786ec8bb446ec6229311c079..31549f7fba9f50b54364871cd72d4691035234a2 100644 --- a/Interaction/Widgets/vtkBiDimensionalRepresentation.cxx +++ b/Interaction/Widgets/vtkBiDimensionalRepresentation.cxx @@ -104,13 +104,13 @@ void vtkBiDimensionalRepresentation ::SetHandleRepresentation(vtkHandleRepresent } //------------------------------------------------------------------------------ -void vtkBiDimensionalRepresentation::GetPoint1WorldPosition(double pos[3]) +void vtkBiDimensionalRepresentation::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { this->Point1Representation->GetWorldPosition(pos); } //------------------------------------------------------------------------------ -void vtkBiDimensionalRepresentation::GetPoint2WorldPosition(double pos[3]) +void vtkBiDimensionalRepresentation::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { this->Point2Representation->GetWorldPosition(pos); } @@ -188,14 +188,14 @@ void vtkBiDimensionalRepresentation::SetPoint4WorldPosition(double x[3]) } //------------------------------------------------------------------------------ -void vtkBiDimensionalRepresentation::GetPoint1DisplayPosition(double pos[3]) +void vtkBiDimensionalRepresentation::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST { this->Point1Representation->GetDisplayPosition(pos); pos[2] = 0.0; } //------------------------------------------------------------------------------ -void vtkBiDimensionalRepresentation::GetPoint2DisplayPosition(double pos[3]) +void vtkBiDimensionalRepresentation::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST { this->Point2Representation->GetDisplayPosition(pos); pos[2] = 0.0; diff --git a/Interaction/Widgets/vtkBiDimensionalRepresentation.h b/Interaction/Widgets/vtkBiDimensionalRepresentation.h index 0782b712e24be9aeff53c0381dbc58e0121e6df1..ff3eb5d4b6d21311cb5b3d3c03298d0e6fb23441 100644 --- a/Interaction/Widgets/vtkBiDimensionalRepresentation.h +++ b/Interaction/Widgets/vtkBiDimensionalRepresentation.h @@ -60,16 +60,16 @@ public: virtual void SetPoint2WorldPosition(double pos[3]); virtual void SetPoint3WorldPosition(double pos[3]); virtual void SetPoint4WorldPosition(double pos[3]); - virtual void GetPoint1WorldPosition(double pos[3]); - virtual void GetPoint2WorldPosition(double pos[3]); + virtual void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST; + virtual void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST; virtual void GetPoint3WorldPosition(double pos[3]); virtual void GetPoint4WorldPosition(double pos[3]); virtual void SetPoint1DisplayPosition(double pos[3]); virtual void SetPoint2DisplayPosition(double pos[3]); virtual void SetPoint3DisplayPosition(double pos[3]); virtual void SetPoint4DisplayPosition(double pos[3]); - virtual void GetPoint1DisplayPosition(double pos[3]); - virtual void GetPoint2DisplayPosition(double pos[3]); + virtual void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST; + virtual void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST; virtual void GetPoint3DisplayPosition(double pos[3]); virtual void GetPoint4DisplayPosition(double pos[3]); ///@} diff --git a/Interaction/Widgets/vtkDistanceRepresentation.cxx b/Interaction/Widgets/vtkDistanceRepresentation.cxx index aa3c5038fb89a8b0eebfc5d4d3ce6c026ef7a986..d8640413ab0586ba5861be4828e506133a0a2bb0 100644 --- a/Interaction/Widgets/vtkDistanceRepresentation.cxx +++ b/Interaction/Widgets/vtkDistanceRepresentation.cxx @@ -71,7 +71,7 @@ void vtkDistanceRepresentation::InstantiateHandleRepresentation() } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation::GetPoint1WorldPosition(double pos[3]) +void vtkDistanceRepresentation::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -80,7 +80,7 @@ void vtkDistanceRepresentation::GetPoint1WorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation::GetPoint2WorldPosition(double pos[3]) +void vtkDistanceRepresentation::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { diff --git a/Interaction/Widgets/vtkDistanceRepresentation.h b/Interaction/Widgets/vtkDistanceRepresentation.h index 7101925e6f40965ca7bcd867d9b327b9e48f7d6f..77fc9c4d37fcdcd7e7c7b5e1295e9f7ddfb1e9c2 100644 --- a/Interaction/Widgets/vtkDistanceRepresentation.h +++ b/Interaction/Widgets/vtkDistanceRepresentation.h @@ -46,14 +46,14 @@ public: * this representation. Note that methods are available for both * display and world coordinates. */ - virtual void GetPoint1WorldPosition(double pos[3]) = 0; - virtual void GetPoint2WorldPosition(double pos[3]) = 0; + virtual void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST = 0; + virtual void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST = 0; virtual double* GetPoint1WorldPosition() VTK_SIZEHINT(3) = 0; virtual double* GetPoint2WorldPosition() VTK_SIZEHINT(3) = 0; virtual void SetPoint1DisplayPosition(double pos[3]) = 0; virtual void SetPoint2DisplayPosition(double pos[3]) = 0; - virtual void GetPoint1DisplayPosition(double pos[3]) = 0; - virtual void GetPoint2DisplayPosition(double pos[3]) = 0; + virtual void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST = 0; + virtual void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST = 0; virtual void SetPoint1WorldPosition(double pos[3]) = 0; virtual void SetPoint2WorldPosition(double pos[3]) = 0; ///@} diff --git a/Interaction/Widgets/vtkDistanceRepresentation2D.cxx b/Interaction/Widgets/vtkDistanceRepresentation2D.cxx index 2dcc2b341b595d6dbe1c57b455078ebc400b296d..cc66cc27c4cebcaaae65aa4a836f6a32b48720f0 100644 --- a/Interaction/Widgets/vtkDistanceRepresentation2D.cxx +++ b/Interaction/Widgets/vtkDistanceRepresentation2D.cxx @@ -51,13 +51,13 @@ vtkDistanceRepresentation2D::~vtkDistanceRepresentation2D() } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation2D::GetPoint1WorldPosition(double pos[3]) +void vtkDistanceRepresentation2D::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { this->Point1Representation->GetWorldPosition(pos); } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation2D::GetPoint2WorldPosition(double pos[3]) +void vtkDistanceRepresentation2D::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { this->Point2Representation->GetWorldPosition(pos); } @@ -125,14 +125,14 @@ void vtkDistanceRepresentation2D::SetPoint2WorldPosition(double x[3]) } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation2D::GetPoint1DisplayPosition(double pos[3]) +void vtkDistanceRepresentation2D::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST { this->Point1Representation->GetDisplayPosition(pos); pos[2] = 0.0; } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation2D::GetPoint2DisplayPosition(double pos[3]) +void vtkDistanceRepresentation2D::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST { this->Point2Representation->GetDisplayPosition(pos); pos[2] = 0.0; diff --git a/Interaction/Widgets/vtkDistanceRepresentation2D.h b/Interaction/Widgets/vtkDistanceRepresentation2D.h index c06c12eb3ff72d8ad9afdccaec429fb3bd39a8fc..3bde58bd55d626a71ad4df802a4e4646e20c4862 100644 --- a/Interaction/Widgets/vtkDistanceRepresentation2D.h +++ b/Interaction/Widgets/vtkDistanceRepresentation2D.h @@ -55,16 +55,16 @@ public: */ double* GetPoint1WorldPosition() override; double* GetPoint2WorldPosition() override; - void GetPoint1WorldPosition(double pos[3]) override; - void GetPoint2WorldPosition(double pos[3]) override; + void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST override; void SetPoint1WorldPosition(double pos[3]) override; void SetPoint2WorldPosition(double pos[3]) override; ///@} void SetPoint1DisplayPosition(double pos[3]) override; void SetPoint2DisplayPosition(double pos[3]) override; - void GetPoint1DisplayPosition(double pos[3]) override; - void GetPoint2DisplayPosition(double pos[3]) override; + void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; ///@{ /** diff --git a/Interaction/Widgets/vtkDistanceRepresentation3D.cxx b/Interaction/Widgets/vtkDistanceRepresentation3D.cxx index 52bced70ba0fefab48aa67a283feebe26542afcf..f632314525b6e6bcb89b2719e01bdd7cb2e174be 100644 --- a/Interaction/Widgets/vtkDistanceRepresentation3D.cxx +++ b/Interaction/Widgets/vtkDistanceRepresentation3D.cxx @@ -150,7 +150,7 @@ void vtkDistanceRepresentation3D::SetLabelActor(vtkFollower* fol) } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation3D::GetPoint1WorldPosition(double pos[3]) +void vtkDistanceRepresentation3D::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -159,7 +159,7 @@ void vtkDistanceRepresentation3D::GetPoint1WorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation3D::GetPoint2WorldPosition(double pos[3]) +void vtkDistanceRepresentation3D::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { @@ -226,7 +226,7 @@ void vtkDistanceRepresentation3D::SetPoint2WorldPosition(double x[3]) } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation3D::GetPoint1DisplayPosition(double pos[3]) +void vtkDistanceRepresentation3D::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point1Representation) { @@ -236,7 +236,7 @@ void vtkDistanceRepresentation3D::GetPoint1DisplayPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkDistanceRepresentation3D::GetPoint2DisplayPosition(double pos[3]) +void vtkDistanceRepresentation3D::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST { if (this->Point2Representation) { diff --git a/Interaction/Widgets/vtkDistanceRepresentation3D.h b/Interaction/Widgets/vtkDistanceRepresentation3D.h index 6f2fe500f9bd850ad26ba70574e17d2aaabe1e9b..d49e3e79836c1de085f2a79fde0530fbb8e5f9bc 100644 --- a/Interaction/Widgets/vtkDistanceRepresentation3D.h +++ b/Interaction/Widgets/vtkDistanceRepresentation3D.h @@ -111,16 +111,16 @@ public: */ double* GetPoint1WorldPosition() override; double* GetPoint2WorldPosition() override; - void GetPoint1WorldPosition(double pos[3]) override; - void GetPoint2WorldPosition(double pos[3]) override; + void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST override; void SetPoint1WorldPosition(double pos[3]) override; void SetPoint2WorldPosition(double pos[3]) override; ///@} void SetPoint1DisplayPosition(double pos[3]) override; void SetPoint2DisplayPosition(double pos[3]) override; - void GetPoint1DisplayPosition(double pos[3]) override; - void GetPoint2DisplayPosition(double pos[3]) override; + void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; + void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST override; ///@{ /** diff --git a/Interaction/Widgets/vtkHandleRepresentation.cxx b/Interaction/Widgets/vtkHandleRepresentation.cxx index 9fb29cf8e23b7e64242ad03ce0e1181a7b37a239..10a43e888ec7b88a9f8e2c7c0dc6431da4ca3832 100644 --- a/Interaction/Widgets/vtkHandleRepresentation.cxx +++ b/Interaction/Widgets/vtkHandleRepresentation.cxx @@ -112,7 +112,7 @@ void vtkHandleRepresentation::SetWorldPosition(double pos[3]) } //------------------------------------------------------------------------------ -void vtkHandleRepresentation::GetWorldPosition(double pos[3]) +void vtkHandleRepresentation::GetWorldPosition(double pos[3]) VTK_FUTURE_CONST { this->WorldPosition->GetValue(pos); } diff --git a/Interaction/Widgets/vtkHandleRepresentation.h b/Interaction/Widgets/vtkHandleRepresentation.h index 1a171120830310d90d7cd425bdd795fc82e6e236..c43b5dc506ea540360a16c1df682fb7508734e07 100644 --- a/Interaction/Widgets/vtkHandleRepresentation.h +++ b/Interaction/Widgets/vtkHandleRepresentation.h @@ -67,7 +67,7 @@ public: virtual void GetDisplayPosition(double pos[2]); virtual double* GetDisplayPosition() VTK_SIZEHINT(2); virtual void SetWorldPosition(double pos[3]); - virtual void GetWorldPosition(double pos[3]); + virtual void GetWorldPosition(double pos[3]) VTK_FUTURE_CONST; virtual double* GetWorldPosition() VTK_SIZEHINT(3); ///@} diff --git a/Interaction/Widgets/vtkLineRepresentation.cxx b/Interaction/Widgets/vtkLineRepresentation.cxx index fb493b63c74e6cc63cba9389ced0f521140a7965..495a95e92ab391c8739eb6d761906874870b2b5e 100644 --- a/Interaction/Widgets/vtkLineRepresentation.cxx +++ b/Interaction/Widgets/vtkLineRepresentation.cxx @@ -266,7 +266,7 @@ void vtkLineRepresentation::GetPolyData(vtkPolyData* pd) //-- Set/Get position of the three handles ----------------------------- // Point1 //------------------------------------------------------------------------------ -void vtkLineRepresentation::GetPoint1WorldPosition(double pos[3]) +void vtkLineRepresentation::GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST { this->Point1Representation->GetWorldPosition(pos); } @@ -277,7 +277,7 @@ double* vtkLineRepresentation::GetPoint1WorldPosition() } //------------------------------------------------------------------------------ -void vtkLineRepresentation::GetPoint1DisplayPosition(double pos[3]) +void vtkLineRepresentation::GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST { this->Point1Representation->GetDisplayPosition(pos); } @@ -308,7 +308,7 @@ void vtkLineRepresentation::SetPoint1DisplayPosition(double x[3]) // Point2 //------------------------------------------------------------------------------ -void vtkLineRepresentation::GetPoint2WorldPosition(double pos[3]) +void vtkLineRepresentation::GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST { this->Point2Representation->GetWorldPosition(pos); } @@ -319,7 +319,7 @@ double* vtkLineRepresentation::GetPoint2WorldPosition() } //------------------------------------------------------------------------------ -void vtkLineRepresentation::GetPoint2DisplayPosition(double pos[3]) +void vtkLineRepresentation::GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST { this->Point2Representation->GetDisplayPosition(pos); } diff --git a/Interaction/Widgets/vtkLineRepresentation.h b/Interaction/Widgets/vtkLineRepresentation.h index 256a7081bc4571a74933badf695abdc331ed8707..c8f61fa44db4cecab8029c654b90f2366c565af9 100644 --- a/Interaction/Widgets/vtkLineRepresentation.h +++ b/Interaction/Widgets/vtkLineRepresentation.h @@ -68,20 +68,20 @@ public: * this representation. Note that methods are available for both * display and world coordinates. */ - void GetPoint1WorldPosition(double pos[3]); + void GetPoint1WorldPosition(double pos[3]) VTK_FUTURE_CONST; double* GetPoint1WorldPosition() VTK_SIZEHINT(3); VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL) - void GetPoint1DisplayPosition(double pos[3]); + void GetPoint1DisplayPosition(double pos[3]) VTK_FUTURE_CONST; VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL) double* GetPoint1DisplayPosition() VTK_SIZEHINT(3); void SetPoint1WorldPosition(double pos[3]); VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL) void SetPoint1DisplayPosition(double pos[3]); VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL) - void GetPoint2DisplayPosition(double pos[3]); + void GetPoint2DisplayPosition(double pos[3]) VTK_FUTURE_CONST; VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL) double* GetPoint2DisplayPosition() VTK_SIZEHINT(3); - void GetPoint2WorldPosition(double pos[3]); + void GetPoint2WorldPosition(double pos[3]) VTK_FUTURE_CONST; double* GetPoint2WorldPosition() VTK_SIZEHINT(3); void SetPoint2WorldPosition(double pos[3]); VTK_MARSHALEXCLUDE(VTK_MARSHAL_EXCLUDE_REASON_IS_INTERNAL) diff --git a/Rendering/Context2D/vtkAbstractContextItem.cxx b/Rendering/Context2D/vtkAbstractContextItem.cxx index ecade9be72849331a4b1c9d6e56e405bad2468d1..cc30610c938b26c27973892fa86f36a090847e52 100644 --- a/Rendering/Context2D/vtkAbstractContextItem.cxx +++ b/Rendering/Context2D/vtkAbstractContextItem.cxx @@ -98,7 +98,7 @@ vtkIdType vtkAbstractContextItem::GetItemIndex(vtkAbstractContextItem* item) } //------------------------------------------------------------------------------ -vtkIdType vtkAbstractContextItem::GetNumberOfItems() +vtkIdType vtkAbstractContextItem::GetNumberOfItems() VTK_FUTURE_CONST { return static_cast<vtkIdType>(this->Children->size()); } diff --git a/Rendering/Context2D/vtkAbstractContextItem.h b/Rendering/Context2D/vtkAbstractContextItem.h index ddf76800a5871c36a236dec60e69c48d1d603ee7..a5d2d85ebbc829cf7b2d40510a6f30c8622452e6 100644 --- a/Rendering/Context2D/vtkAbstractContextItem.h +++ b/Rendering/Context2D/vtkAbstractContextItem.h @@ -95,7 +95,7 @@ public: /** * Get the number of child items. */ - vtkIdType GetNumberOfItems(); + vtkIdType GetNumberOfItems() VTK_FUTURE_CONST; /** * Remove all child items from this item. diff --git a/Rendering/Context2D/vtkContextScene.cxx b/Rendering/Context2D/vtkContextScene.cxx index c61efbb59751281c34fbde19d72fa5b86703eddc..047a8d39c40183f7fed7f68654b5ab3fade6f3b0 100644 --- a/Rendering/Context2D/vtkContextScene.cxx +++ b/Rendering/Context2D/vtkContextScene.cxx @@ -177,7 +177,7 @@ vtkAbstractContextItem* vtkContextScene::GetItem(unsigned int index) } //------------------------------------------------------------------------------ -unsigned int vtkContextScene::GetNumberOfItems() +unsigned int vtkContextScene::GetNumberOfItems() VTK_FUTURE_CONST { return static_cast<unsigned int>(this->Children->size()); } diff --git a/Rendering/Context2D/vtkContextScene.h b/Rendering/Context2D/vtkContextScene.h index 10e1fcb7e2343c697ec9ec1876d42e7c437cb7eb..f4be1e9907dd860843f11f6378ef9631bf00dc2a 100644 --- a/Rendering/Context2D/vtkContextScene.h +++ b/Rendering/Context2D/vtkContextScene.h @@ -79,7 +79,7 @@ public: /** * Get the number of child items. */ - unsigned int GetNumberOfItems(); + unsigned int GetNumberOfItems() VTK_FUTURE_CONST; /** * Remove all child items from this item. diff --git a/Testing/DataModel/vtkMappedUnstructuredGridGenerator.cxx b/Testing/DataModel/vtkMappedUnstructuredGridGenerator.cxx index f6f1d7c79da5f8763ae07bdad2eaac017125223a..609c801e911ce95551098d10de62e38bbbba42ff 100644 --- a/Testing/DataModel/vtkMappedUnstructuredGridGenerator.cxx +++ b/Testing/DataModel/vtkMappedUnstructuredGridGenerator.cxx @@ -268,7 +268,7 @@ class MappedGrid public: typedef vtkMappedUnstructuredGrid<MappedGridImpl, MappedCellIterator<MappedGridImpl>> _myBase; - int GetDataObjectType() override { return VTK_UNSTRUCTURED_GRID_BASE; } + int GetDataObjectType() VTK_FUTURE_CONST override { return VTK_UNSTRUCTURED_GRID_BASE; } static MappedGrid* New(); diff --git a/Testing/Rendering/vtkTestingObjectFactory.cxx b/Testing/Rendering/vtkTestingObjectFactory.cxx index 6a273ee97affdadb4c1ee64fd3fdcb7b5dd4a902..eb94fd73aa6144cfe0786c4b83ab886aa467d183 100644 --- a/Testing/Rendering/vtkTestingObjectFactory.cxx +++ b/Testing/Rendering/vtkTestingObjectFactory.cxx @@ -15,7 +15,7 @@ vtkTestingObjectFactory::vtkTestingObjectFactory() "Overrides for testing", 1, vtkObjectFactoryCreatevtkTestingInteractor); } -const char* vtkTestingObjectFactory::GetVTKSourceVersion() +const char* vtkTestingObjectFactory::GetVTKSourceVersion() VTK_FUTURE_CONST { return VTK_SOURCE_VERSION; } diff --git a/Testing/Rendering/vtkTestingObjectFactory.h b/Testing/Rendering/vtkTestingObjectFactory.h index 56753f9f7d478037f6d6ea4a34f4502f32a45b04..6780d57e242296eec87bc1b850f411db9beb773e 100644 --- a/Testing/Rendering/vtkTestingObjectFactory.h +++ b/Testing/Rendering/vtkTestingObjectFactory.h @@ -37,8 +37,11 @@ class VTKTESTINGRENDERING_EXPORT vtkTestingObjectFactory : public vtkObjectFacto public: static vtkTestingObjectFactory* New(); vtkTypeMacro(vtkTestingObjectFactory, vtkObjectFactory); - const char* GetVTKSourceVersion() override; - const char* GetDescription() override { return "Factory for overrides during testing"; } + const char* GetVTKSourceVersion() VTK_FUTURE_CONST override; + const char* GetDescription() VTK_FUTURE_CONST override + { + return "Factory for overrides during testing"; + } void PrintSelf(ostream& os, vtkIndent indent) override; protected: