PrusaSlicer/src/libslic3r/ObjectID.cpp
2024-11-20 16:04:15 +01:00

31 lines
730 B
C++

///|/ Copyright (c) Prusa Research 2019 - 2020 Vojtěch Bubník @bubnikv
///|/
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
///|/
#include "ObjectID.hpp"
namespace Slic3r {
size_t ObjectBase::s_last_id = 0;
struct WipeTowerId : public ObjectBase {
// Need to inherit because ObjectBase
// destructor is protected.
using ObjectBase::ObjectBase;
};
ObjectID wipe_tower_instance_id(size_t bed_idx)
{
static std::vector<WipeTowerId> mine;
if (bed_idx >= mine.size()) {
mine.resize(bed_idx + 1);
}
return mine[bed_idx].id();
}
ObjectWithTimestamp::Timestamp ObjectWithTimestamp::s_last_timestamp = 1;
} // namespace Slic3r
// CEREAL_REGISTER_TYPE(Slic3r::ObjectBase)