对'function'c ++的未完成引用

时间:2015-04-29 12:11:41

标签: c++ function reference undefined codeblocks

我正在使用C ++中的Code :: Blocks。

我有三个以下文件:

的main.cpp

ThreadPoolExecutor

functions.cpp

#include "functions.hpp"

int main()
{
    getSourceCode("str1","str2");
    return 0;
}

functions.hpp

#include "functions.hpp"

void getSourceCode(string str1,string str2)
{
}

我收到了main.cpp

中第5行的错误void getSourceCode(string, string);

我哪里错了?

0 个答案:

没有答案