英文:
error: field 'dateOfBirth' has incomplete type 'Poco::Data::Date'
问题
我正在尝试使用POCO库来存储出生日期。
#include <Poco/DateTime.h>
#include <Poco/Data/Time.h>
void main()
{
Poco::Data::Date dateOfBirth;
}
但在编译时出现错误:
错误:字段'dateOfBirth'具有不完整的类型'Poco::Data::Date'。
英文:
I am trying to use POCO library to store date of birth.
#include <Poco/DateTime.h>
#include <Poco/Data/Time.h>
void main()
{
Poco::Data::Date dateOfBirth;
}
But while compilation I am getting Error :
error: field 'dateOfBirth' has incomplete type 'Poco::Data::Date'
答案1
得分: 1
This header file should be included
英文:
#include <Poco/Data/Date.h>
This header file should be included
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论