X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintParallel.h;h=6e81c66d367428fe1edc1242cd269d78024002ec;hb=c685af45eca598fce4a5d40837f6b7d203c60976;hp=acfab864f1c5d93aacbd95cb0aa6ac3318fe7bad;hpb=3985b767e74385e51d1b503d2c97d3bb1e3f6faa;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintParallel.h b/src/SketchPlugin/SketchPlugin_ConstraintParallel.h index acfab864f..6e81c66d3 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintParallel.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintParallel.h @@ -1,24 +1,28 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_ConstraintParallel.h // Created: 26 May 2014 // Author: Artem ZHIDKOV -#ifndef SketchPlugin_ConstraintParallel_HeaderFile -#define SketchPlugin_ConstraintParallel_HeaderFile +#ifndef SketchPlugin_ConstraintParallel_H_ +#define SketchPlugin_ConstraintParallel_H_ #include "SketchPlugin.h" #include -#include "SketchPlugin_Constraint.h" +#include "SketchPlugin_ConstraintBase.h" + +#define PARALLEL_COLOR "#ffff00" /** \class SketchPlugin_ConstraintParallel * \ingroup DataModel * \brief Feature for creation of a new constraint parallelism of two lines * - * These constraint has two attributes: + * This constraint has two attributes: * SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B() */ -class SketchPlugin_ConstraintParallel: public SketchPlugin_Constraint +class SketchPlugin_ConstraintParallel : public SketchPlugin_ConstraintBase { -public: + public: /// Parallel constraint kind inline static const std::string& ID() { @@ -26,8 +30,11 @@ public: return MY_CONSTRAINT_PARALLEL_ID; } /// \brief Returns the kind of a feature - SKETCHPLUGIN_EXPORT virtual const std::string& getKind() - {static std::string MY_KIND = SketchPlugin_ConstraintParallel::ID(); return MY_KIND;} + SKETCHPLUGIN_EXPORT virtual const std::string& getKind() + { + static std::string MY_KIND = SketchPlugin_ConstraintParallel::ID(); + return MY_KIND; + } /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); @@ -36,8 +43,7 @@ public: SKETCHPLUGIN_EXPORT virtual void initAttributes(); /// Returns the AIS preview - SKETCHPLUGIN_EXPORT virtual boost::shared_ptr getAISObject( - boost::shared_ptr thePrevious); + SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); /// Moves the feature /// \param theDeltaX the delta for X coordinate is moved