// Copyright (c) 2014-2017 Thomas Fussell // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, WRISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE // // @license: http://www.opensource.org/licenses/mit-license.php // @author: see AUTHORS file #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace xlnt { namespace detail { struct worksheet_impl; struct workbook_impl { workbook_impl() : base_date_(calendar::windows_1900) { } workbook_impl(const workbook_impl &other) : active_sheet_index_(other.active_sheet_index_), worksheets_(other.worksheets_), shared_strings_(other.shared_strings_), stylesheet_(other.stylesheet_), manifest_(other.manifest_), theme_(other.theme_), core_properties_(other.core_properties_), extended_properties_(other.extended_properties_), custom_properties_(other.custom_properties_), view_(other.view_), code_name_(other.code_name_), file_version_(other.file_version_) { } workbook_impl &operator=(const workbook_impl &other) { active_sheet_index_ = other.active_sheet_index_; worksheets_.clear(); std::copy(other.worksheets_.begin(), other.worksheets_.end(), back_inserter(worksheets_)); shared_strings_.clear(); std::copy(other.shared_strings_.begin(), other.shared_strings_.end(), std::back_inserter(shared_strings_)); theme_ = other.theme_; manifest_ = other.manifest_; sheet_title_rel_id_map_ = other.sheet_title_rel_id_map_; view_ = other.view_; code_name_ = other.code_name_; file_version_ = other.file_version_; core_properties_ = other.core_properties_; extended_properties_ = other.extended_properties_; custom_properties_ = other.custom_properties_; return *this; } optional active_sheet_index_; std::list worksheets_; std::vector shared_strings_; optional stylesheet_; calendar base_date_; optional title_; manifest manifest_; optional theme_; std::unordered_map> images_; std::vector> core_properties_; std::vector> extended_properties_; std::vector> custom_properties_; std::unordered_map sheet_title_rel_id_map_; optional view_; optional code_name_; struct file_version_t { std::string app_name; std::size_t last_edited; std::size_t lowest_edited; std::size_t rup_build; }; optional file_version_; optional calculation_properties_; }; } // namespace detail } // namespace xlnt