我正在尝试构建一个在内部使用第三方库的库,但我不想向我的库的用户公开这个第三方库。这样,在构建静态库时,用户只需要我的头文件和编译后的库。如何处理在第3方库中定义的类定义中的私有(private)成员?例如。.标题:#include"ThirdPartyLib.h"classDummyClass{TypeFromThirdPartytftp;public:boolcheckStuff(constfloat)const;};实现:#include"ThirdPartyLib.h"#include"dummy.h"boolDummyClass::checkStuff(constfloatt