这一直困扰着我一段时间。我有一个命名空间,我想在该命名空间中声明 C 风格的函数。所以我做了我认为正确的事情:
namespace test
{
std::deque<unsigned> CSV_TO_DEQUE(const char* data);
std::deque<unsigned> ZLIB64_TO_DEQUE(const char* data, int width, int height);
std::string BASE64_DECODE(std::string const& encoded_string);
}
然后对于实现文件:
#include "theheaderfile.hpp"
using namespace test;
std::deque<unsigned> CSV_TO_DEQUE(const char* data)
{
...
}
std::deque<unsigned> ZLIB64_TO_DEQUE(const char* data, int width, int height)
{
...
}
std::string BASE64_DECODE(std::string const& encoded_string)
{
...
}
但是,当尝试实际调用这些函数时,我得到一个未定义的引用错误。文件链接,所以我不确定为什么引用未定义。
我还应该补充一点,如果我将函数从test
命名空间中取出并将它们留在全局命名空间中,它们将毫无障碍地工作。
我想避免在标题中定义函数。这可能吗?