fix LNK2004 getEDesc already defined in sectionReader.obj

is this really the only/best way to fix this?!
This commit is contained in:
Mark Pictor 2015-08-09 23:36:54 -04:00
parent 4207a46f07
commit 677261d4fb
2 changed files with 5 additions and 4 deletions

View file

@ -172,8 +172,11 @@ void SDAI_Application_instance::AppendMultInstance( SDAI_Application_instance *
}
}
// BUG implement this -- FIXME function is never used
const EntityDescriptor* SDAI_Application_instance::getEDesc() const {
return eDesc;
}
// BUG implement this -- FIXME function is never used
SDAI_Application_instance * SDAI_Application_instance::GetMiEntity( char * entName ) {
std::string s1, s2;

View file

@ -78,9 +78,7 @@ class SC_CORE_EXPORT SDAI_Application_instance : public SDAI_DAObject_SDAI {
void setEDesc( const EntityDescriptor * const ed ) {
eDesc = ed;
}
const EntityDescriptor * getEDesc() const {
return eDesc;
}
const EntityDescriptor * getEDesc() const;
void StepFileId( int fid ) {
STEPfile_id = fid;
}