dll 인터페이스에서 stl대체하는법
글쓴이: skazkchdrj42 / 작성시간: 토, 2024/05/11 - 3:46오후
#pragma once #include "EnginePath.h" class EngineFile; class EngineDirectory : public EnginePath { public: void GoParent(); void GoChild(std::string ChildPath); std::vector<EngineFile> GetAllFile(); std::vector<EngineFile> GetAllFile(std::string _Ext); };
이런 클래스를 인터페이스로 감싸서 노출하고싶은데
std::vector같은 자료를 리턴하는 함수를
어떻게 c스타일로 대체하나요??
Forums:
댓글 달기