operator<< for all PVField, indent and array_at manipulator

This commit is contained in:
Matej Sekoranja
2013-02-07 22:52:16 +01:00
parent a8a96def97
commit a0de4f126f
5 changed files with 161 additions and 15 deletions

View File

@@ -97,4 +97,9 @@ PVArray::~PVArray()
pImpl->capacity = capacity;
}
std::ostream& operator<<(format::array_at_internal const& manip, const PVArray& array)
{
return array.dumpValue(manip.stream, manip.index);
}
}}