命名空间 c++ 的 Objective-C 包装器图书馆(gloox)

发布于 2024-12-02 02:23:05 字数 353 浏览 0 评论 0原文

我正在尝试将 gloox 库包装在 Objective-C 中。我读过这篇文章 为 C++ 库制作 Objective-C 包装器< /a> 它相当简单,但它不涵盖命名空间内的类。关于如何仅在命名空间中使用上面文章中的技术有什么想法吗? 感谢您的帮助!

[编辑] 我想我已经明白了 添加

#ifdef __cplusplus
namespace gloox {
class Client;
}
#endif

Im trying to wrap the gloox library in objective-c. I have read this article Making a Objective-C Wrapper for a C++ Library and it is fairly straight forward however it does not cover classes that are inside a namespace. Any thoughts on how to use the technique in the article above only with a namespace?
Thanks for the help!

[edit]
Think I figured it out
add

#ifdef __cplusplus
namespace gloox {
class Client;
}
#endif

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过期以后 2024-12-09 02:23:05

我认为当编译为目标 C++ 时,显而易见的应该起作用:

#if defined __cplusplus
namespace Foo { class MyCPPClass; }   // forward class declaration
#else
/*not sure here*/ /*namespace Foo { typedef struct MyCPPClass MyCPPClass;  }*/ // forward struct declaration
#endif

@interface MyOCClass : NSObject
{
@private
    Foo::MyCPPClass* cppObject;
} 

// methods and properties

@end

Qt 项目有很多 混合 C++ 和 Objective-C 的示例

I think the obvious should work when compiled as objective C++:

#if defined __cplusplus
namespace Foo { class MyCPPClass; }   // forward class declaration
#else
/*not sure here*/ /*namespace Foo { typedef struct MyCPPClass MyCPPClass;  }*/ // forward struct declaration
#endif

@interface MyOCClass : NSObject
{
@private
    Foo::MyCPPClass* cppObject;
} 

// methods and properties

@end

The Qt project has a lot of examples for mixing C++ and Objective-C.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文