Refactor Serializer, SerialIter, SHAMapItem, NodeObject:

* Make LessThan private
* Make NodeObject::isSame private
* Remove hotTRANSACTION
* Remove some Serializer members
* Remove unused SHAMapItem::getRaw
* Remove unused STLedgerEntry::getOwners
* Remove Serializer constructors
* Remove unused Serializer members
* Remove SerialIter ctor
This commit is contained in:
Vinnie Falco
2015-05-22 13:10:47 -07:00
parent c25184cc88
commit 8be4e7e65f
56 changed files with 220 additions and 370 deletions

View File

@@ -48,7 +48,7 @@ public:
}
Status
fetch (void const*, NodeObject::Ptr*)
fetch (void const*, std::shared_ptr<NodeObject>*)
{
return notFound;
}
@@ -67,7 +67,7 @@ public:
}
void
store (NodeObject::ref object)
store (std::shared_ptr<NodeObject> const& object)
{
}
@@ -77,7 +77,7 @@ public:
}
void
for_each (std::function <void(NodeObject::Ptr)> f)
for_each (std::function <void(std::shared_ptr<NodeObject>)> f)
{
}