//TreeBox.h
#pragma once
#include "ListBox.h"
struct ItemInfo
{
std::string _fileName;
std::string _childName;
std::string _time;
std::string _format;
std::string _size;
std::string _nodeKey;
};
class TreeBox
{
...
}
//ListBox.h
class
{
public:
std::vector<ItemInfo> _itemList; //compile error
}
我想通过在“TreeBox.h”中使用结构来在“ListBox.h”中使用 std::vector 但它是编译错误分配器 C2903
我该如何使用它?