/usr/include/dolfin/parameter/Parameter.h is in libdolfin1.0-dev 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 | // Copyright (C) 2009 Anders Logg
//
// This file is part of DOLFIN.
//
// DOLFIN is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// DOLFIN is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
//
// First added:  2009-05-08
// Last changed: 2011-07-06
#ifndef __PARAMETER_H
#define __PARAMETER_H
#include <set>
#include <sstream>
#include <string>
#include <dolfin/common/types.h>
namespace dolfin
{
  /// Base class for parameters.
  class Parameter
  {
  public:
    /// Create parameter for given key
    Parameter(std::string key);
    /// Destructor
    virtual ~Parameter();
    /// Return parameter key
    std::string key() const;
    /// Return parameter description
    std::string description() const;
    /// Return true if parameter is set, return false otherwise
    bool is_set() const;
    /// Return access count (number of times parameter has been accessed)
    uint access_count() const;
    /// Return change count (number of times parameter has been changed)
    uint change_count() const;
    /// Set range for int-valued parameter
    virtual void set_range(int min_value, int max_value);
    /// Set range for double-valued parameter
    virtual void set_range(double min_value, double max_value);
    /// Set range for string-valued parameter
    virtual void set_range(std::set<std::string> range);
    /// Get range for int-valued parameter
    virtual void get_range(int& min_value, int& max_value) const;
    /// Get range for double-valued parameter
    virtual void get_range(double& min_value, double& max_value) const;
    /// Get range for string-valued parameter
    virtual void get_range(std::set<std::string>& range) const;
    /// Assignment from int
    virtual const Parameter& operator= (int value);
    /// Assignment from double
    virtual const Parameter& operator= (double value);
    /// Assignment from string
    virtual const Parameter& operator= (std::string value);
    /// Assignment from string
    virtual const Parameter& operator= (const char* value);
    /// Assignment from bool
    virtual const Parameter& operator= (bool value);
    /// Cast parameter to int
    virtual operator int() const;
    /// Cast parameter to uint
    virtual operator dolfin::uint() const;
    /// Cast parameter to double
    virtual operator double() const;
    /// Cast parameter to string
    virtual operator std::string() const;
    /// Cast parameter to bool
    virtual operator bool() const;
    /// Return value type string
    virtual std::string type_str() const = 0;
    /// Return value string
    virtual std::string value_str() const = 0;
    /// Return range string
    virtual std::string range_str() const = 0;
    /// Return short string description
    virtual std::string str() const = 0;
    // Check that key name is allowed
    static void check_key(std::string key);
  protected:
    // Access count
    mutable uint _access_count;
    // Change count
    uint _change_count;
    // Whether or not parameter has been set
    bool _is_set;
  private:
    // Parameter key
    std::string _key;
    // Parameter description
    std::string _description;
  };
  /// Parameter with value type int
  class IntParameter : public Parameter
  {
  public:
    /// Create unset int-valued
    IntParameter(std::string key);
    /// Create int-valued parameter
    IntParameter(std::string key, int value);
    /// Destructor
    ~IntParameter();
    /// Set range
    void set_range(int min_value, int max_value);
    /// Get range
    void get_range(int &min_value, int &max_value) const;
    /// Assignment
    const IntParameter& operator= (int value);
    /// Cast parameter to int
    operator int() const;
    /// Cast parameter to uint
    operator dolfin::uint() const;
    /// Return value type string
    std::string type_str() const;
    /// Return value string
    std::string value_str() const;
    /// Return range string
    std::string range_str() const;
    /// Return short string description
    std::string str() const;
  private:
    /// Parameter value
    int _value;
    /// Parameter range
    int _min, _max;
  };
  /// Parameter with value type double
  class DoubleParameter : public Parameter
  {
  public:
    /// Create unset double-valued parameter
    DoubleParameter(std::string key);
    /// Create double-valued parameter
    DoubleParameter(std::string key, double value);
    /// Destructor
    ~DoubleParameter();
    /// Set range
    void set_range(double min_value, double max_value);
    /// Get range
    void get_range(double &min_value, double &max_value) const;
    /// Assignment
    const DoubleParameter& operator= (double value);
    /// Cast parameter to double
    operator double() const;
    /// Return value type string
    std::string type_str() const;
    /// Return value string
    std::string value_str() const;
    /// Return range string
    std::string range_str() const;
    /// Return short string description
    std::string str() const;
  private:
    /// Parameter value
    double _value;
    /// Parameter range
    double _min, _max;
  };
  /// Parameter with value type string
  class StringParameter : public Parameter
  {
  public:
    /// Create unset string-valued parameter
    StringParameter(std::string key);
    /// Create string-valued parameter
    StringParameter(std::string key, std::string value);
    /// Destructor
    ~StringParameter();
    /// Set range
    void set_range(std::set<std::string> range);
    /// Get range
    void get_range(std::set<std::string>& range) const;
    /// Assignment
    const StringParameter& operator= (std::string value);
    /// Assignment
    const StringParameter& operator= (const char* value);
    /// Cast parameter to string
    operator std::string() const;
    /// Return value type string
    std::string type_str() const;
    /// Return value string
    std::string value_str() const;
    /// Return range string
    std::string range_str() const;
    /// Return short string description
    std::string str() const;
  private:
    /// Parameter value
    std::string _value;
    /// Parameter range
    std::set<std::string> _range;
  };
  /// Parameter with value type bool
  class BoolParameter : public Parameter
  {
  public:
    /// Create unset bool-valued parameter
    BoolParameter(std::string key);
    /// Create bool-valued parameter
    BoolParameter(std::string key, bool value);
    /// Destructor
    ~BoolParameter();
    /// Assignment
    const BoolParameter& operator= (bool value);
    /// Cast parameter to bool
    operator bool() const;
    /// Return value type string
    std::string type_str() const;
    /// Return value string
    std::string value_str() const;
    /// Return range string
    std::string range_str() const;
    /// Return short string description
    std::string str() const;
  private:
    /// Parameter value
    bool _value;
  };
}
#endif
 |