【发布时间】:2015-09-29 00:09:25
【问题描述】:
我有一个带有 2 个函数的 C# 项目
namespace LibiqCommonStructures
{
public class BlackLevelData : List<BlackLevelLookupTable>
{
public BlackLevelData()
{
}
public BlackLevelData(BlackLevelData original)
: base(original.DeepCopy())
{
}
public void AddLookupTable(double gain, double exposure, double[] levels)
{
var table = new BlackLevelLookupTable
{
AnalogGain = gain,
ExposureTime = exposure,
ChannelLevels = levels
};
Add(table);
}
}
}
SaturationLevelData 相同
我创建了一个 c++\CLI 项目,我想将这两个类作为参数放入一个函数中
#pragma once
#include "Preprocessor.h"
using namespace LibiqCommonStructures;
namespace ToolBox {
public ref class PreprocessorWrapper
{
public:
PreprocessorWrapper();
void Function1(BlackLevelData^ blackLevelData, SaturationLevelData^ saturationLevelData);
private:
Preprocessor* _preprocessor;
};
}
标题
#include "PreprocessorWrapper.h"
void ToolBox::PreprocessorWrapper::Function1(BlackLevelData^ blackLevelData, SaturationLevelData^ saturationLevelData)
{
_preprocessor->Function1();
}
ToolBox::PreprocessorWrapper::PreprocessorWrapper()
{
_preprocessor = new Preprocessor();
}
这是我得到的错误
Error 2 error C2871: 'LibiqCommonStructures' : a namespace with this name does not exist g:\iqtool2\src\libiqtool\preprocessor_interop\PreprocessorWrapper.h 5 1 Preprocessor_interop
Error 8 error C2448: 'ToolBox::PreprocessorWrapper::Function1' : function-style initializer appears to be a function definition G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp 5 1 Preprocessor_interop
Error 6 error C2065: 'SaturationLevelData' : undeclared identifier G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp 4 1 Preprocessor_interop
Error 7 error C2065: 'saturationLevelData' : undeclared identifier G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp 4 1 Preprocessor_interop
Error 4 error C2065: 'BlackLevelData' : undeclared identifier G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp 4 1 Preprocessor_interop
Error 5 error C2065: 'blackLevelData' : undeclared identifier G:\IQTool2\src\libiqtool\Preprocessor_interop\PreprocessorWrapper.cpp 4 1 Preprocessor_interop
Error 3 error C2061: syntax error : identifier 'BlackLevelData' g:\iqtool2\src\libiqtool\preprocessor_interop\PreprocessorWrapper.h 13 1 Preprocessor_interop
你能看出我在这里做错了什么吗?
【问题讨论】:
-
在您的 C++/CLI 项目中,您是否添加了对包含
LibiqCommonStructures的项目/程序集的引用? -
您是否添加了 C# dll 作为参考?
-
@DmytroShevchenko 是的,我做到了
-
检查此答案是否对您有帮助:stackoverflow.com/questions/16732789/…
-
@DmytroShevchenko 不,我也做了这两个