美文网首页
xcode 创建C++类生成的头文件为.hpp不是.h

xcode 创建C++类生成的头文件为.hpp不是.h

作者: 踩坑小分队 | 来源:发表于2020-06-17 15:08 被阅读0次

1、xcode生成C++文件的模板位置
/Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File Templates/Source/C++ File.xctemplate/WithHeader

2、修改文件内容
___FILEBASENAME___.hpp文件中的hpp,都更改为h

//___FILEHEADER___

#ifndef ___FILEBASENAMEASIDENTIFIER____h
#define ___FILEBASENAMEASIDENTIFIER____h

#include <stdio.h>

#endif /* ___FILEBASENAMEASIDENTIFIER____h */

___FILEBASENAME___.cpp中的hpp修改为h

//___FILEHEADER___

#include "___FILEBASENAME___.h"

PS:如果在该路径下文件不能修改,可以将文件拷贝出来,修改完毕后再拷贝回去。

相关文章

网友评论

      本文标题:xcode 创建C++类生成的头文件为.hpp不是.h

      本文链接:https://www.haomeiwen.com/subject/uuksxktx.html