diff --git a/EgtExecutor.rc b/EgtExecutor.rc index d746943..e8257ac 100644 Binary files a/EgtExecutor.rc and b/EgtExecutor.rc differ diff --git a/PhotoObj.cpp b/PhotoObj.cpp index e46d3a2..d017d33 100644 --- a/PhotoObj.cpp +++ b/PhotoObj.cpp @@ -119,7 +119,7 @@ PhotoObj::Save( STRVECTOR& vString) const //---------------------------------------------------------------------------- bool -PhotoObj::Load( const STRVECTOR& vString) +PhotoObj::Load( const STRVECTOR& vString, int nBaseGdbId) { if ( int( vString.size()) < NKEY) return false ; diff --git a/PhotoObj.h b/PhotoObj.h index ce95614..84c7486 100644 --- a/PhotoObj.h +++ b/PhotoObj.h @@ -25,7 +25,7 @@ class PhotoObj : public IUserObj virtual bool Dump( std::string& sOut, bool bMM = true, const char* szNewLine = "\n") const ; virtual bool ToSave( void) const { return true ; } virtual bool Save( STRVECTOR& vString) const ; - virtual bool Load( const STRVECTOR& vString) ; + virtual bool Load( const STRVECTOR& vString, int nBaseGdbId) ; virtual bool SetOwner( int nId, IGeomDB* pGDB) ; virtual int GetOwner( void) const ; virtual IGeomDB* GetGeomDB( void) const ;