//******************************************************************* // // License: See top level LICENSE.txt file. // // Author: Garrett Potts (gpotts@imagelinks.com) // //************************************************************************* // $Id: ossimDoubleGridProperty.h 9968 2006-11-29 14:01:53Z gpotts $ #ifndef ossimDoubleGridProperty_HEADER #define ossimDoubleGridProperty_HEADER #include class OSSIMDLLEXPORT ossimDoubleGridProperty : public ossimProperty { public: ossimDoubleGridProperty(const ossimString& name = ossimString(""), int numberOfRows = 0, int numberOfCols = 0, const std::vector& values = std::vector()); ossimDoubleGridProperty(const ossimDoubleGridProperty& rhs); virtual ~ossimDoubleGridProperty(); ossimObject* dup()const; virtual const ossimProperty& assign(const ossimProperty& rhs); virtual bool setValue(const ossimString& value); virtual void valueToString(ossimString& valueResult)const; void clearConstraints(); /*! * Setting both values to -1 will say no constraints. * if min is constrained and max not then it will not allow * the cols to grow any larger than the passed in max. * * If the min is -1 and max not then it will not exceed the * max number of cols */ void setColConstraints(int minNumberOfCols, int maxNumberOfCols); void setRowConstraints(int minNumberOfRows, int maxNumberOfRows); void setContraints(int minNumberOfRows, int maxNumberOfRows, int minNumberOfCols, int maxNumberOfCols); ossim_uint32 getNumberOfRows()const; ossim_uint32 getNumberOfCols()const; double getValue(ossim_uint32 row, ossim_uint32 col)const; protected: int theMinNumberOfCols; int theMaxNumberOfCols; int theMinNumberOfRows; int theMaxNumberOfRows; std::vector< std::vector > theValues; TYPE_DATA }; #endif