mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Merge 9b0f5a7a2696447b234b384a3e340132711e58f5 into 297b331435d6dee09bf89c8a5ad974b01f18039b
This commit is contained in:
commit
11c65590fd
@ -45,6 +45,7 @@ namespace drawing {
|
||||
class XLNT_API spreadsheet_drawing
|
||||
{
|
||||
public:
|
||||
spreadsheet_drawing();
|
||||
spreadsheet_drawing(xml::parser &parser);
|
||||
void serialize(xml::serializer &serializer);
|
||||
|
||||
|
@ -57,6 +57,14 @@ class xlsx_consumer;
|
||||
class XLNT_API format
|
||||
{
|
||||
public:
|
||||
/// <summary>
|
||||
/// Default contructor.
|
||||
/// </summary>
|
||||
format()
|
||||
: d_(nullptr)
|
||||
{
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
/// Returns the alignment of this format.
|
||||
/// </summary>
|
||||
|
@ -91,6 +91,12 @@ std::vector<std::string> copy_and_extract(xml::parser &p, xml::serializer &s)
|
||||
namespace xlnt {
|
||||
namespace drawing {
|
||||
|
||||
spreadsheet_drawing::spreadsheet_drawing()
|
||||
{
|
||||
embed_ids_ = std::vector<std::string>();
|
||||
serialized_value_ = std::string();
|
||||
}
|
||||
|
||||
spreadsheet_drawing::spreadsheet_drawing(xml::parser &parser)
|
||||
{
|
||||
std::ostringstream serialization_stream;
|
||||
|
Loading…
x
Reference in New Issue
Block a user