如何获得 MFC 和 ATL 中类的完整列表?
出于文档目的,我需要 MFC 和 ATL 中可用的所有公共类的列表。如何在不复制和粘贴所有头文件的情况下构建此列表?
I need for documentation purposes the list of all classes public available in MFC and in ATL. How can I build this list without copy and paste from all header files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文档始终是一个不错的起点。
您可以下载这个方便的图表,甚至可以将其挂在墙上。 此处提供多种格式。
对于 ATL。 ATL 和 MFC 之间共享的类均在此处列出一个>。
The documentation is always a good place to start.
You can download this handy chart, and even hang it on your wall. Multiple formats are available here.
And for ATL. Classes shared between ATL and MFC are all listed here.
您可以使用 doxygen 来完成此操作。您可以将其指向 \Vc7\atlmfc\include 中的标头,它将创建公共成员的 HTML(和其他格式)。
You can do this with doxygen. You can point it to the headers in \Vc7\atlmfc\include and it will create HTML (and other formats) of the public members.