mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 17:50:34 +05:00
#24666 [CEA][Windows] BLSURPLUGIN compilation issue
This commit is contained in:
parent
e9ce775931
commit
f016bdf914
@ -121,7 +121,7 @@ bool SMESHDS_Hypothesis::IsSameName( const SMESHDS_Hypothesis& other) const
|
|||||||
*/
|
*/
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
|
||||||
void SMESHDS_Hypothesis::SaveString(std::ostream & save, const std::string& txt )
|
void SMESHDS_Hypothesis::SaveStringToStream(std::ostream & save, const std::string& txt )
|
||||||
{
|
{
|
||||||
save << " " << txt.size() << " " << txt;
|
save << " " << txt.size() << " " << txt;
|
||||||
}
|
}
|
||||||
@ -132,7 +132,7 @@ void SMESHDS_Hypothesis::SaveString(std::ostream & save, const std::string& txt
|
|||||||
*/
|
*/
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
|
||||||
bool SMESHDS_Hypothesis::LoadString(std::istream & load, std::string& txt )
|
bool SMESHDS_Hypothesis::LoadStringFromStream(std::istream & load, std::string& txt )
|
||||||
{
|
{
|
||||||
txt.clear();
|
txt.clear();
|
||||||
int size = -1;
|
int size = -1;
|
||||||
|
@ -48,8 +48,8 @@ class SMESHDS_EXPORT SMESHDS_Hypothesis
|
|||||||
virtual std::ostream & SaveTo(std::ostream & save)=0;
|
virtual std::ostream & SaveTo(std::ostream & save)=0;
|
||||||
virtual std::istream & LoadFrom(std::istream & load)=0;
|
virtual std::istream & LoadFrom(std::istream & load)=0;
|
||||||
|
|
||||||
static void SaveString(std::ostream & save, const std::string& txt );
|
static void SaveStringToStream(std::ostream & save, const std::string& txt );
|
||||||
static bool LoadString(std::istream & load, std::string& txt );
|
static bool LoadStringFromStream(std::istream & load, std::string& txt );
|
||||||
|
|
||||||
bool IsSameName( const SMESHDS_Hypothesis& other) const;
|
bool IsSameName( const SMESHDS_Hypothesis& other) const;
|
||||||
virtual bool operator==(const SMESHDS_Hypothesis& other) const;
|
virtual bool operator==(const SMESHDS_Hypothesis& other) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user