mirror of https://github.com/aseprite/aseprite.git
21 lines
343 B
C++
21 lines
343 B
C++
|
// 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/object.h"
|
||
|
|
||
|
namespace doc {
|
||
|
|
||
|
Object::Object()
|
||
|
: m_id(doc::NullId)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
} // namespace doc
|