双包含和标题库stbi_image

时间:2017-04-11 14:26:58

标签: c++ c++11 header inclusion header-only

我有一个main.cpp,包括a.h(有自己的a.cpp) a.h包括头文件库“stbi_image.h”,如下:

#ifndef STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#endif

https://github.com/nothings/stb

* .cpp包含自己的* .h,使用#pragma once

但我仍然得到:

  

LNK1169发现一个或多个多重定义符号LNK2005 stb-failure   原因已在a.obj文件中定义= main.obj ...和一堆   其他

对我来说似乎是对的,但正如我在这个问题中所理解的那样: Multiple definition and header-only libraries

也许我应该在我需要的stb_image.h函数中添加内联/静态? 我做错了吗?

提前致谢

1 个答案:

答案 0 :(得分:1)

  1. 也许我应该在stb_image.h函数中添加内联/静态功能?

否,您已经有一种方法可以将'stb_image函数'声明为静态或extern:

#define STB_IMAGE_STATIC
  1. 我做错什么了吗? 是的,您每次包含“ stb_image.h”时,都要编译两次“ stb_image” 因此,整个设计可能是:

Image.h:

#ifndef _IMAGE_H_
#define _IMAGE_H_

Class Image.h {
public:
    Image() : _imgData(NULL) {}
    virtual ~Image();
    ...
    void loadf(...);
    ...

    unsigned char* getData() const { return _imgData; }
protected:
    unsigned char* _imgData;
};
#endif

Image.cpp:

#include "Image.h"

#define STB_IMAGE_IMPLEMENTATION   // use of stb functions once and for all
#include "stb_image.h"

Image::~Image()
{ 
    if ( _imgData ) 
        stbi_image_free(_imgData); 
}

void Image::load(...) {
    _imgData = stbi_load(...);
}

main.cpp

#include "Image.h" // as you see, main.cpp do not know anything about stb stuff

int main() {
    Image* img = new Image();  // this is my 'wrapper' to stb functions
    img->load(...);

    myTexture(img->getData(), ...);

    return 0;
}