SourceXtractorPlusPlus  0.12
Please provide a description of the project.
PointModel.h
Go to the documentation of this file.
1 
23 #ifndef MODELFITTING_POINTMODEL_H
24 #define MODELFITTING_POINTMODEL_H
25 
29 
30 namespace ModelFitting {
31 
32 class PointModel : public PositionedModel, public ConstantModel {
33 
34 public:
35 
37 
38  PointModel(PointModel&& other);
39 
40  virtual ~PointModel();
41 
42 };
43 
44 } // end of namespace ModelFitting
45 
46 #endif /* MODELFITTING_POINTMODEL_H */
47 
std::shared_ptr< DependentParameter< std::shared_ptr< EngineParameter > > > x
std::shared_ptr< DependentParameter< std::shared_ptr< EngineParameter > > > y
PointModel(std::shared_ptr< BasicParameter > x, std::shared_ptr< BasicParameter > y, std::shared_ptr< BasicParameter > value)
Definition: PointModel.cpp:27