mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
13 lines
230 B
C++
13 lines
230 B
C++
#include "workbook/document_properties.hpp"
|
|
|
|
namespace xlnt {
|
|
|
|
document_properties::document_properties()
|
|
: created(1900, 1, 1),
|
|
modified(1900, 1, 1),
|
|
excel_base_date(calendar::windows_1900)
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace xlnt
|