SourceXtractorPlusPlus  0.10
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PointModel.cpp
Go to the documentation of this file.
1 
24 
25 namespace ModelFitting {
26 
28  : PositionedModel(x, y), ConstantModel(value) { }
29 
31  : PositionedModel(std::move(other)), ConstantModel(std::move(other)) { }
32 
33 PointModel::~PointModel() = default;
34 
35 } // end of namespace ModelFitting
T move(T...args)
PointModel(std::shared_ptr< BasicParameter > x, std::shared_ptr< BasicParameter > y, std::shared_ptr< BasicParameter > value)
Definition: PointModel.cpp:27