aseprite/src/doc/object.cpp

27 lines
373 B
C++
Raw Normal View History

2014-03-13 06:25:09 +08:00
// Aseprite Document Library
// Copyright (c) 2014 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
2014-03-13 06:25:09 +08:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "doc/object.h"
namespace doc {
static ObjectId newId = 0;
2014-03-13 06:25:09 +08:00
Object::Object()
: m_id(++newId)
{
}
Object::~Object()
2014-03-13 06:25:09 +08:00
{
}
} // namespace doc