Files
core/ASCOfficeOdtFile/Source/DocxFormat/Logic/Tab.cpp
Elen.Subbotina 6138139c4e исправлен проект - подключен "старый" DocxFormat (тот который с AVS - без вытирания буста)
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 22:37:54 +03:00

72 lines
904 B
C++

// auto inserted precompiled begin
#include "precompiled_docxformat.h"
// auto inserted precompiled end
#include "Tab.h"
namespace OOX
{
namespace Logic
{
Tab::Tab()
{
}
Tab::~Tab()
{
}
Tab::Tab(const std::string& text)
{
fromTxt(text);
}
Tab::Tab(const XML::XNode& node)
{
fromXML(node);
}
const Tab& Tab::operator =(const XML::XNode& node)
{
fromXML(node);
return *this;
}
const Tab& Tab::operator =(const std::string& text)
{
fromTxt(text);
return *this;
}
void Tab::fromXML(const XML::XNode& node)
{
}
void Tab::fromTxt(const std::string& text)
{
}
const XML::XNode Tab::toXML() const
{
return XML::XElement(ns.w + "tab");
}
const std::string Tab::toTxt() const
{
return "\t";
}
} // namespace Logic
} // namespace OOX