Skip to content

Commit

Permalink
Remove mut soma files
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherioszisis committed Jun 10, 2022
1 parent 48b2449 commit 9f5300f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 114 deletions.
70 changes: 0 additions & 70 deletions include/morphio/mut/soma.h

This file was deleted.

3 changes: 0 additions & 3 deletions include/morphio/soma.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,4 @@ struct Soma
Property::PointLevel properties_;
};

std::ostream& operator<<(std::ostream& os, const std::shared_ptr<Soma>& soma);
std::ostream& operator<<(std::ostream& os, const Soma& soma);

} // namespace morphio
29 changes: 0 additions & 29 deletions src/mut/soma.cpp

This file was deleted.

12 changes: 0 additions & 12 deletions src/soma.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,4 @@ floatType Soma::surface() const {
floatType Soma::maxDistance() const {
return maxDistanceToCenterOfGravity(properties_._points);
}


std::ostream& operator<<(std::ostream& os, const Soma& soma) {
os << dumpPoints(soma.points());
return os;
}


std::ostream& operator<<(std::ostream& os, const std::shared_ptr<Soma>& soma) {
os << *soma;
return os;
}
} // namespace morphio

0 comments on commit 9f5300f

Please sign in to comment.