我有一个项目:mialsrtkOrientImage,一个.h和一个.cpp 很多依赖"托管"用cmake。 我想制作一个.lib (它编译并创建.lib)
现在我想在另一个项目OrientImageWrapper中使用.lib来在项目中定义类mialsrtkOrientImage
我有这个: mialsrtkOrientImage.h:
#ifndef mialsrtkOrientImage_H
#define mialsrtkOrientImage_H
class MialOrientImage {
public:
//! default constructor
MialOrientImage();
//! default destructor
~MialOrientImage();
std::string inputFile;
std::string outputFile;
std::string orientation;
void reOrient(std::string inputFile, std::string outputFile, std::string orientation);
private:
int coucou;
};
#endif
并在OrientImageWrapper中:
#ifndef mialsrtkOrientImageWrapper_H
#define mialsrtkOrientImageWrapper_H
#include <string>
# define reOrientWrapper_EXPORT __declspec(dllexport)
class MialOrientImage;
class reOrientWrapper_EXPORT reOrientWrapper {
public:
//! default constructor
reOrientWrapper();
//! default destructor
~reOrientWrapper();
std::string inputFile;
std::string outputFile;
std::string orientation;
void reOrient(std::string inputFile, std::string outputFile, std::string orientation);
int test = 1;
private:
MialOrientImage* wrap_MialOrientImage;
};
在OrientImageWrapper.cpp中我有:
#include "mialsrtkOrientImageWrapper.h"
#include <string>
#include <iostream>
void reOrientWrapper::reOrient(std::string inputFile, std::string outputFile, std::string orientation)
{
std::cout << inputFile << outputFile << orientation << std::endl;
wrap_MialOrientImage.reOrient(inputFile, outputFile, orientation);
}
reOrientWrapper::reOrientWrapper()
{
std::cout << "construit" << std::endl;
}
reOrientWrapper::~reOrientWrapper()
{
std::cout << "detruit" << std::endl;
}
int main()
{
reOrientWrapper test;
std::cout << test.test << std::endl;
test.reOrient("plif", "plaf", "plouf");
return 0;
}
在Visual Studio中我将配置了.lib的文件夹放在配置属性中 - &gt; VC ++目录 - &gt;图书馆指令
但是当我想编译OrientImageWrapper时,我有这个错误:
.reOrient的左边必须有class / struc / union,错误代码C2228
所以似乎从.lib创建类MialOrientImage时出现问题
我怎么解决这个问题?