将聚合类与多个文件一起使用 - C ++

时间:2017-02-12 01:23:22

标签: c++ multiple-files

我在让课程正确识别聚合课时遇到问题 使用多个文件。如果所有内容都在一个文件中,代码就可以工作,但是当我尝试使用多个文件时,它不会将聚合类识别为类。

#include <string>
#include "CInvoice.h"
#include "personType.h"
#include "dateType.h"

using namespace std;

class CInvoicePersonDate : public CInvoice
{
private:
    personType customer;
    dateType purchDate;

这是我的派生类标题的开头。它没有将“persontype”和“dateType”注册为类。我确信头文件拼写不正确。我不确定是否忘记添加更多代码来完成这项工作或其他任何问题。如果您需要更多信息来帮助我,请告诉我。

0 个答案:

没有答案