0

我正在尝试在 cpp 中编写一个后端,它可以读取测验问题的二进制文件,并且只在被问到时显示答案。我想使用 DLL 链接并遵循 Microsoft 的演练:http: //msdn.microsoft.com/en-us/library/vstudio/ms235636.aspx,它不使用类成员。我也想导出它们,并在类中包含某些结构。

基本上,我希望能够声明和使用类的对象并使用它的成员函数,只需将 DLL 包含在我承担的任何进一步的项目中。我该怎么做?在我的以下代码中,

#ifdef CXWDLL_EXPORTS
#define CXWAPI __declspec(dllexport) 
#else
#define CXWAPI __declspec(dllimport) 
#endif

#include<string>

using namespace std;

typedef unsigned long long UINT64
#define SIZE 15
#define GRIDSIZE 225
#define MAXCLUES 50

namespace cxw
{
    class CXWAPI CXWPuzzle
    {
        public:
            CXWPuzzle();
            virtual ~CXWPuzzle();
            struct Header
            {
                string signature;
                string version;
                short type;
            } header;
            struct Checksum
            {
                int header;
                int crossie;
                int grid;
                int clues;
                int solution;
                int file;
            } checksum;
            struct Contents
            {
                struct CHeader
                {
                    string title;
                    string author;
                    string copyright;
                    string notes;
                } cHeader;
                struct Grid
                {
                    short size;
                    UINT64 grid[4];
                    char filled[GRIDSIZE];
                    UINT64 filled[4];
                } grid;
                struct Clues
                {
                    string across[MAXCLUES];
                    string down[MAXCLUES];
                } clues;
                struct Solution
                {
                    char answers[GRIDSIZE];
                    string across[MAXCLUES];
                    string down[MAXCLUES];
                } solution;
            } contents;
    };
}

VS 2010 编译器在以下位置显示“错误:需要声明”:

} solution;

和随后的右括号。我还没有添加类的方法。

我究竟做错了什么?另外,我的代码会让我做我提到的要求吗?

4

1 回答 1

1
struct Grid
{
    short size;
    UINT64 grid[4];
    char filled[225];
    UINT64 filled[4];
};

你这里有一个错误,filled已经被声明了两次。当我修复它时,我无法重现您所说的其他错误。

于 2013-04-11T07:47:34.480 回答