Program Listing for File IFreezingPoint.hpp¶
↰ Return to documentation for file (src/include/IFreezingPoint.hpp)
#ifndef SRC_INCLUDE_IFREEZINGPOINT_HPP_
#define SRC_INCLUDE_IFREEZINGPOINT_HPP_
namespace Nextsim {
class IFreezingPoint {
public:
virtual ~IFreezingPoint() = default;
virtual double operator()(double sss) const = 0;
};
}
#endif /* SRC_INCLUDE_IFREEZINGPOINT_HPP_ */