46 #ifndef OME_XML_MODEL_PUMP_H 47 #define OME_XML_MODEL_PUMP_H 57 #include <ome/common/xml/dom/Document.h> 58 #include <ome/common/xml/dom/Element.h> 59 #include <ome/common/xml/dom/Node.h> 61 #include <ome/xml/model/primitives/Quantity.h> 63 #include <ome/xml/model/Reference.h> 84 std::shared_ptr<Impl>
impl;
115 static std::shared_ptr<Pump>
129 operator= (
const Pump&) =
delete;
144 link (std::shared_ptr<Reference>& reference,
145 std::shared_ptr<ome::xml::model::OMEModelObject>&
object);
161 setID (
const std::string&
id);
186 const std::weak_ptr<ome::xml::model::Laser>&
199 const std::weak_ptr<ome::xml::model::Laser>&
201 const std::shared_ptr<ome::xml::model::Laser>& laser_BackReference);
214 linkLaser (
const std::shared_ptr<ome::xml::model::Laser>& laser_BackReference);
232 unlinkLaser (
const std::shared_ptr<ome::xml::model::Laser>& laser_BackReference);
250 #endif // OME_XML_MODEL_PUMP_H OME model interface (abstract top-level container)
Definition: OMEModel.h:61
const std::weak_ptr< ome::xml::model::Laser > & setLinkedLaser(OMEModelObject::indexed_container< ome::xml::model::Laser, std::weak_ptr >::type::size_type index, const std::shared_ptr< ome::xml::model::Laser > &laser_BackReference)
Set linked Laser.
Definition: Pump.cpp:242
const std::weak_ptr< ome::xml::model::Laser > & getLinkedLaser(OMEModelObject::indexed_container< ome::xml::model::Laser, std::weak_ptr >::type::size_type index) const
Get linked Laser.
Definition: Pump.cpp:236
virtual void asXMLElementInternal(common::xml::dom::Document &document, common::xml::dom::Element &element) const
Transform the object hierarchy rooted at this element to XML.
Definition: Pump.cpp:281
OMEModelObject::indexed_container< ome::xml::model::Laser, std::weak_ptr >::type::size_type sizeOfLinkedLaserList() const
Get size of linked Laser list.
Definition: Pump.cpp:224
bool unlinkLaser(const std::shared_ptr< ome::xml::model::Laser > &laser_BackReference)
Unlink Laser.
Definition: Pump.cpp:265
boost::multi_index_container< Ptr< T >, boost::multi_index::indexed_by< boost::multi_index::random_access<>, boost::multi_index::ordered_unique< boost::multi_index::identity< Ptr< T > >, std::owner_less< Ptr< T > > > > > type
Multi-index container type.
Definition: OMEModelObject.h:93
virtual SKIP void update(const common::xml::dom::Element &element, ome::xml::model::OMEModel &model)
Update the object hierarchy recursively from an XML DOM tree.
Definition: Pump.cpp:167
void setID(const std::string &id)
Set the ID property.
Definition: Pump.cpp:217
Private implementation details of Pump model object.
Definition: Pump.cpp:71
const std::string & getXMLNamespace() const
Get the XML namespace for this model object.
Definition: Pump.cpp:305
Pump model object.
Definition: Pump.h:79
Multi-index container for efficient ordered insertion and deletion of model object references...
Definition: OMEModelObject.h:84
Open Microscopy Environment C++ implementation.
const std::string & getID() const
Get the ID property.
Definition: Pump.cpp:210
Pump()
Default constructor.
Definition: Pump.cpp:121
bool link(std::shared_ptr< Reference > &reference, std::shared_ptr< ome::xml::model::OMEModelObject > &object)
Link a given OME model object to this model object.
Definition: Pump.cpp:195
OMEModelObject::indexed_container< ome::xml::model::Laser, std::weak_ptr >::type getLinkedLaserList() const
Get the linked Laser list.
Definition: Pump.cpp:230
bool linkLaser(const std::shared_ptr< ome::xml::model::Laser > &laser_BackReference)
Link Laser.
Definition: Pump.cpp:252
const std::string & elementName() const
Get the element name of this model object.
Definition: Pump.cpp:154
static std::shared_ptr< Pump > create(const common::xml::dom::Element &element, ome::xml::model::OMEModel &model)
Create a Pump model object from DOM element.
Definition: Pump.cpp:145
Reference model object.
Definition: Reference.h:78
bool validElementName(const std::string &name) const
Check if a given element name is valid for processing by this model object.
Definition: Pump.cpp:161
virtual ~Pump()
Destructor.
Definition: Pump.cpp:140
std::shared_ptr< Impl > impl
Private implementation details.
Definition: Pump.h:82