mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-06 23:00:34 +05:00
PAL16202,16203 (Propagation 1D on edges group)
remove useless includes
This commit is contained in:
parent
13e902c404
commit
2145d41d72
@ -27,6 +27,7 @@
|
|||||||
// Module : SMESH
|
// Module : SMESH
|
||||||
// $Header$
|
// $Header$
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
#include "StdMeshers_NumberOfSegments_i.hxx"
|
#include "StdMeshers_NumberOfSegments_i.hxx"
|
||||||
#include "SMESH_Gen_i.hxx"
|
#include "SMESH_Gen_i.hxx"
|
||||||
#include "SMESH_Gen.hxx"
|
#include "SMESH_Gen.hxx"
|
||||||
@ -37,8 +38,6 @@
|
|||||||
|
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
/*!
|
/*!
|
||||||
* StdMeshers_NumberOfSegments_i::StdMeshers_NumberOfSegments_i
|
* StdMeshers_NumberOfSegments_i::StdMeshers_NumberOfSegments_i
|
||||||
@ -84,7 +83,6 @@ SMESH::double_array* StdMeshers_NumberOfSegments_i::BuildDistributionExpr( const
|
|||||||
CORBA::Long conv )
|
CORBA::Long conv )
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::BuildDistribution" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -106,7 +104,6 @@ SMESH::double_array* StdMeshers_NumberOfSegments_i::BuildDistributionTab( const
|
|||||||
CORBA::Long conv )
|
CORBA::Long conv )
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::BuildDistribution" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
|
|
||||||
std::vector<double> tbl( func.length() );
|
std::vector<double> tbl( func.length() );
|
||||||
@ -139,7 +136,6 @@ SMESH::double_array* StdMeshers_NumberOfSegments_i::BuildDistributionTab( const
|
|||||||
void StdMeshers_NumberOfSegments_i::SetNumberOfSegments( CORBA::Long theSegmentsNumber )
|
void StdMeshers_NumberOfSegments_i::SetNumberOfSegments( CORBA::Long theSegmentsNumber )
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::SetNumberOfSegments" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
try {
|
try {
|
||||||
this->GetImpl()->SetNumberOfSegments( theSegmentsNumber );
|
this->GetImpl()->SetNumberOfSegments( theSegmentsNumber );
|
||||||
@ -163,7 +159,6 @@ void StdMeshers_NumberOfSegments_i::SetNumberOfSegments( CORBA::Long theSegments
|
|||||||
|
|
||||||
CORBA::Long StdMeshers_NumberOfSegments_i::GetNumberOfSegments()
|
CORBA::Long StdMeshers_NumberOfSegments_i::GetNumberOfSegments()
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::GetNumberOfSegments" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
return this->GetImpl()->GetNumberOfSegments();
|
return this->GetImpl()->GetNumberOfSegments();
|
||||||
}
|
}
|
||||||
@ -176,7 +171,6 @@ CORBA::Long StdMeshers_NumberOfSegments_i::GetNumberOfSegments()
|
|||||||
void StdMeshers_NumberOfSegments_i::SetDistrType(CORBA::Long typ)
|
void StdMeshers_NumberOfSegments_i::SetDistrType(CORBA::Long typ)
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::SetDistrType" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
try {
|
try {
|
||||||
this->GetImpl()->SetDistrType( (::StdMeshers_NumberOfSegments::DistrType) typ );
|
this->GetImpl()->SetDistrType( (::StdMeshers_NumberOfSegments::DistrType) typ );
|
||||||
@ -197,7 +191,6 @@ void StdMeshers_NumberOfSegments_i::SetDistrType(CORBA::Long typ)
|
|||||||
|
|
||||||
CORBA::Long StdMeshers_NumberOfSegments_i::GetDistrType()
|
CORBA::Long StdMeshers_NumberOfSegments_i::GetDistrType()
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::GetDistrType" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
return this->GetImpl()->GetDistrType();
|
return this->GetImpl()->GetDistrType();
|
||||||
}
|
}
|
||||||
@ -213,7 +206,6 @@ CORBA::Long StdMeshers_NumberOfSegments_i::GetDistrType()
|
|||||||
void StdMeshers_NumberOfSegments_i::SetScaleFactor( CORBA::Double theScaleFactor )
|
void StdMeshers_NumberOfSegments_i::SetScaleFactor( CORBA::Double theScaleFactor )
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::SetScaleFactor" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
try {
|
try {
|
||||||
this->GetImpl()->SetScaleFactor( theScaleFactor );
|
this->GetImpl()->SetScaleFactor( theScaleFactor );
|
||||||
@ -237,7 +229,6 @@ void StdMeshers_NumberOfSegments_i::SetScaleFactor( CORBA::Double theScaleFactor
|
|||||||
CORBA::Double StdMeshers_NumberOfSegments_i::GetScaleFactor()
|
CORBA::Double StdMeshers_NumberOfSegments_i::GetScaleFactor()
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::GetScaleFactor" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
double scale;
|
double scale;
|
||||||
try {
|
try {
|
||||||
@ -258,7 +249,6 @@ CORBA::Double StdMeshers_NumberOfSegments_i::GetScaleFactor()
|
|||||||
void StdMeshers_NumberOfSegments_i::SetTableFunction(const SMESH::double_array& table)
|
void StdMeshers_NumberOfSegments_i::SetTableFunction(const SMESH::double_array& table)
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::SetTableFunction" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
std::vector<double> tbl( table.length() );
|
std::vector<double> tbl( table.length() );
|
||||||
for (int i = 0; i < table.length(); i++)
|
for (int i = 0; i < table.length(); i++)
|
||||||
@ -282,7 +272,6 @@ void StdMeshers_NumberOfSegments_i::SetTableFunction(const SMESH::double_array&
|
|||||||
SMESH::double_array* StdMeshers_NumberOfSegments_i::GetTableFunction()
|
SMESH::double_array* StdMeshers_NumberOfSegments_i::GetTableFunction()
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::GetTableFunction" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
const std::vector<double>* tbl;
|
const std::vector<double>* tbl;
|
||||||
try {
|
try {
|
||||||
@ -307,7 +296,6 @@ SMESH::double_array* StdMeshers_NumberOfSegments_i::GetTableFunction()
|
|||||||
void StdMeshers_NumberOfSegments_i::SetExpressionFunction(const char* expr)
|
void StdMeshers_NumberOfSegments_i::SetExpressionFunction(const char* expr)
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::SetExpressionFunction" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
try {
|
try {
|
||||||
this->GetImpl()->SetExpressionFunction( expr );
|
this->GetImpl()->SetExpressionFunction( expr );
|
||||||
@ -328,7 +316,6 @@ void StdMeshers_NumberOfSegments_i::SetExpressionFunction(const char* expr)
|
|||||||
char* StdMeshers_NumberOfSegments_i::GetExpressionFunction()
|
char* StdMeshers_NumberOfSegments_i::GetExpressionFunction()
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::GetExpressionFunction" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
const char* expr;
|
const char* expr;
|
||||||
try {
|
try {
|
||||||
@ -349,7 +336,6 @@ char* StdMeshers_NumberOfSegments_i::GetExpressionFunction()
|
|||||||
void StdMeshers_NumberOfSegments_i::SetConversionMode(CORBA::Long conv )
|
void StdMeshers_NumberOfSegments_i::SetConversionMode(CORBA::Long conv )
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::SetConversionMode" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
try {
|
try {
|
||||||
this->GetImpl()->SetConversionMode( conv );
|
this->GetImpl()->SetConversionMode( conv );
|
||||||
@ -370,7 +356,6 @@ void StdMeshers_NumberOfSegments_i::SetConversionMode(CORBA::Long conv )
|
|||||||
CORBA::Long StdMeshers_NumberOfSegments_i::ConversionMode()
|
CORBA::Long StdMeshers_NumberOfSegments_i::ConversionMode()
|
||||||
throw ( SALOME::SALOME_Exception )
|
throw ( SALOME::SALOME_Exception )
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::ConversionMode" );
|
|
||||||
ASSERT( myBaseImpl );
|
ASSERT( myBaseImpl );
|
||||||
int conv;
|
int conv;
|
||||||
try {
|
try {
|
||||||
@ -393,7 +378,6 @@ CORBA::Long StdMeshers_NumberOfSegments_i::ConversionMode()
|
|||||||
|
|
||||||
::StdMeshers_NumberOfSegments* StdMeshers_NumberOfSegments_i::GetImpl()
|
::StdMeshers_NumberOfSegments* StdMeshers_NumberOfSegments_i::GetImpl()
|
||||||
{
|
{
|
||||||
MESSAGE( "StdMeshers_NumberOfSegments_i::GetImpl" );
|
|
||||||
return ( ::StdMeshers_NumberOfSegments* )myBaseImpl;
|
return ( ::StdMeshers_NumberOfSegments* )myBaseImpl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user