X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fengine%2FLinkedBlocPoint.hxx;h=b0653be909adb53f59b54e77906c4f72f4eea14f;hb=255150e4eec79294bbd06c7c464f309b4a264960;hp=b080b3238f6993e285ebde5c7e6a8b0806eceab0;hpb=c971f99371af3cdbe21daa611ebc89806d0e26c1;p=modules%2Fyacs.git diff --git a/src/engine/LinkedBlocPoint.hxx b/src/engine/LinkedBlocPoint.hxx index b080b3238..b0653be90 100644 --- a/src/engine/LinkedBlocPoint.hxx +++ b/src/engine/LinkedBlocPoint.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2015 EDF R&D +// Copyright (C) 2015-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -32,11 +32,17 @@ namespace YACS class YACSLIBENGINE_EXPORT LinkedBlocPoint : public BlocPoint { public: + LinkedBlocPoint() = default; LinkedBlocPoint(const std::list& nodes, AbstractPoint *father); - Node *getFirstNode(); - Node *getLastNode(); + AbstractPoint *deepCopy(AbstractPoint *father) const override; + Node *getFirstNode() override; + Node *getLastNode() override; int getMaxLevelOfParallelism() const; + void getWeightRegardingDPL(ComplexWeight *weight); + void partitionRegardingDPL(const PartDefinition *pd, std::map >& zeMap) const; std::string getRepr() const; + void accept(PointVisitor *pv) override; + AbstractPoint *expandNonSimpleCaseOn(NotSimpleCasePoint *pathologicalPt, const std::set& uncatchedNodes) override; virtual ~LinkedBlocPoint(); }; }