* \param theShape - the geometry of interest
* \retval bool - always false
*/
- virtual bool SetParametersByMesh(const SMESH_Mesh* /*theMesh*/, const TopoDS_Shape& /*theShape*/);
+ virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
/*!
* \brief Initialize my parameter values by default parameters.
* \retval bool - true if parameter values have been successfully defined
*/
- virtual bool SetParametersByDefaults(const TDefaults& /*dflts*/, const SMESH_Mesh* theMesh=0);
+ virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
private:
Algo2D _algo2d;
// Return geometry this hypothesis depends on. Return false if there is no geometry parameter
virtual bool getObjectsDependOn( std::vector< std::string > & entryArray,
- std::vector< int > & /*subIDArray*/ ) const;
+ std::vector< int > & subIDArray ) const;
// Set new geometry instead of that returned by getObjectsDependOn()
virtual bool setObjectsDependOn( std::vector< std::string > & entryArray,
- std::vector< int > & /*subIDArray*/ );
+ std::vector< int > & subIDArray );
};
#endif
aCreator = new GMSHPlugin_Creator_i<GMSHPlugin_Hypothesis_i>;
else if (strcmp(aHypName, "GMSH_Parameters_2D") == 0)
aCreator = new GMSHPlugin_Creator_i<GMSHPlugin_Hypothesis_2D_i>;
- else ;
return aCreator;
}