aseprite/src/doc/document.cpp

32 lines
527 B
C++
Raw Normal View History

2014-03-13 06:25:09 +08:00
// Aseprite Document Library
// Copyright (c) 2014 David Capello
//
// This source file is distributed under the terms of the MIT license,
// please read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "doc/document.h"
#include "doc/export_data.h"
2014-03-13 06:25:09 +08:00
namespace doc {
Document::Document()
{
}
void Document::setFilename(const std::string& filename)
{
m_filename = filename;
}
void Document::setExportData(const ExportDataPtr& data)
{
m_exportData = data;
}
2014-03-13 06:25:09 +08:00
} // namespace doc