файл io — неопределенный символ C ++

Я создаю консольное приложение C ++, где я сохраняю и загружаю вектор в файл. Файл, который я сохраняю и загружаю, имеет заголовок, который имеет размер вектора.

Вот мой код:

void loadFromFile()
{
ifstream iStream("file.ext", ios::binary);
fileHeader_t fHeader;
iStream.read((char*)&fHeader, sizeof(fileHeader_t));
if (fHeader.magicNumber = 0xDEADBEAF)
{
appointments.resize(fHeader.appointmentCount); iStream.read((char*)&appointments[0], fHeader.appointmentCount * sizeof(appointment));
}
}
void saveToFile()
{
ofstream oStream("file.ext", ios::binary);
fileHeader_t fHeader;
fHeader.magicNumber = 0xDEADBEAF;
fHeader.appointmentCount = appointments.size();
oStream.write((char*)&fHeader, sizeof(fileHeader_t));
oStream.write((char*)&appointments[0], sizeof(appointment) * appointments.size());
}

И вот структура заголовка:

struct fileHeader_s
{
DWORD magicNumber;
size_t appointmentsCount;
}fileHeader_t;

Я получаю следующие ошибки:

E2379 Заявление отсутствует;
E2451 Неопределенный символ ‘fHeader’

В следующих строках:

fileHeader_t fHeader;

Почему это происходит, и что более важно, как я могу это исправить?

Спасибо

Обновить

Вот мой полный код:

class appointment
{
public:
appointment(string aDate, string aTime, string aType,
string aLocation, string aComments, bool aIsImportant,
string aReminderDate, string aReminderTime)
{
appDate = aDate;
appTime = aTime;
appType = aType;
appLocation = aLocation;
appComments = aComments;
appIsImportant = aIsImportant;
appReminderDate = aReminderDate;
appReminderTime = aReminderTime;
}
void setDate(string aDate)
{
appDate = aDate;
}
void setTime(string aTime)
{
appTime = aTime;
}
void setType(string aType)
{
appType = aType;
}
void setLocation(string aLocation)
{
appLocation = aLocation;
}
void setComments(string aComments)
{
appComments = aComments;
}
void setIsImportant(bool aIsImportant)
{
appIsImportant = aIsImportant;
}
void setReminderDate(string aReminderDate)
{
appReminderDate = aReminderDate;
}
void setReminderTime(string aReminderTime)
{
appReminderTime = aReminderTime;
}
string getDate()
{
return appDate;
}
string getTime()
{
return appTime;
}
string getType()
{
return appType;
}
string getLocation()
{
return appLocation;
}
string getComments()
{
return appComments;
}
bool getIsImportant()
{
return appIsImportant;
}
string getReminderDate()
{
return appReminderDate;
}
string getReminderTime()
{
return appReminderTime;
}
private:
appointment();
string appDate;
string appTime;
string appType;
string appLocation;
string appComments;
bool appIsImportant;
string appReminderDate;
string appReminderTime;
//person owner;
};

class calendar
{
public:
calendar()
{
loadFromFile();
}
~calendar()
{
saveToFile();
}

void createAppointment(string aDate, string aTime, string aType, string aLocation, string aComments, bool aIsImportant, string aReminderDate, string aReminderTime)
{
appointment newAppointment(aDate, aTime, aType, aLocation, aComments, aIsImportant, aReminderDate, aReminderTime);
appointments.push_back(newAppointment);
}

private:
vector<appointment> appointments;
string calCurrentDate;
string calCurrentTime;
void loadFromFile()
{
ifstream iStream("file.ext", ios::binary);
fileHeader_t fHeader;
iStream.read((char*)&fHeader, sizeof(fileHeader_t));
if (fHeader.magicNumber = 0xDEADBEAF)
{
appointments.resize(fHeader.appointmentCount); iStream.read((char*)&appointments[0], fHeader.appointmentCount * sizeof(appointment));
}
}
void saveToFile()
{
ofstream oStream("file.ext", ios::binary);
fileHeader_t fHeader;
fHeader.magicNumber = 0xDEADBEAF;
fHeader.appointmentCount = appointments.size();
oStream.write((char*)&fHeader, sizeof(fileHeader_t));
oStream.write((char*)&appointments[0], sizeof(appointment) * appointments.size());
}
typedef struct fileHeader_s
{
DWORD magicNumber;
size_t appointmentCount;
}fileHeader_t;
};

Я получаю следующие 2 ошибки:

[BCC32 Предупреждение] Person.cpp (271): W8060 Возможно неправильное назначение
Полный контекст парсера
Person.cpp (245): календарь занятий
Person.cpp (290): решение о создании экземпляра: void calendar :: loadFromFile ()
— Сброс контекста парсера для создания экземпляров …
Person.cpp (267): анализ: void calendar :: loadFromFile ()

Вектор [Ошибка BCC32] (608): E2247 «назначение :: назначение ()» недоступно
Полный контекст парсера
vector (607): решение о создании экземпляра: void vector> :: resize (unsigned int)
— Сброс контекста парсера для создания экземпляров …
Person.cpp (18): #include c: \ program files (x86) \ embarcadero \ rad studio \ 9.0 \ include \ dinkumware \ vector
вектор (8): пространство имен std
вектор (330): вектор класса<_Ty, _Ax>
vector (607): parsing: void vector> :: resize (unsigned int)

Могу ли я получить помощь, чтобы это исправить?

0

Решение

Вам не хватает ключевого слова typedef в определении структуры.

typedef struct fileHeader_s
{

}fileHeader_t;

Однако в C ++ это не требуется для ключевого слова typedef. В этом случае имя структуры по-прежнему fileHeader_s,

2

Другие решения

Я думаю, что вы хотите, это typedef

typedef struct fileHeader_s
{
DWORD magicNumber;
size_t appointmentsCount;
}fileHeader_t;
0

По вопросам рекламы [email protected]