Merge branch 'point-count' into 'master'

Add PointCount to WorkletMapPointToCell.

WorkletMapPointToCell is a convenience subclass of WorkletMapTopology.
As such, it renames all the From/To signature tags to say Point/Cell to
be easier to read. However, the alias for FromCount was missing. Add the
alias PointCount.

See merge request !303
This commit is contained in:
Kenneth Moreland 2016-01-07 18:59:41 -05:00
commit 378004f629

@ -189,6 +189,8 @@ public:
template<typename TypeList = AllTypes >
struct FieldInOutCell : FieldInOut<TypeList> { };
struct PointCount : FromCount { };
struct PointIndices : FromIndices { };
};