Skip to content
Snippets Groups Projects
Commit 819263a2 authored by whh8b's avatar whh8b
Browse files

Add RePlace() method.

parent b3ff71c0
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,10 @@ class Placeable_t {
m_is_placed = true;
m_placed_address = place;
};
void RePlace(Zipr_SDK::RangeAddress_t place) {
m_is_placed = true;
m_placed_address = place;
};
Zipr_SDK::RangeAddress_t Place() { return m_placed_address; }
bool IsPlaced() const { return m_is_placed; }
friend std::ostream &operator<<(std::ostream &, const Placeable_t &);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment