Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancing KhalimskySpace related class documentations. #1398

Merged
merged 3 commits into from
Mar 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
- *Geometry*
- New LpMetric class (model of CMetricSpace) for distance computations in R^n.
(David Coeurjolly, [#1388](https://github.com/DGtal-team/DGtal/pull/1388))

- *Documentation*
- Improving KhalimskySpace related classes documentations by displaying
a short description in the member list.
(Roland Denis, [#1398](https://github.com/DGtal-team/DGtal/pull/1398))

## Bug Fixes
- *Configuration/General*
Expand Down
8 changes: 4 additions & 4 deletions src/DGtal/topology/KhalimskyCellHashFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@


namespace std {
/**
/** @brief
* Extend std namespace to define a std::hash function on
* DGtal::KhalimskyCell.
*
Expand All @@ -62,7 +62,7 @@ namespace std {
}
};

/**
/** @brief
* Extend std namespace to define a std::hash function on
* DGtal::SignedKhalimskyCell.
*
Expand All @@ -83,7 +83,7 @@ namespace std {
}

namespace boost{
/**
/** @brief
* Extend boost namespace to define a boost::hash function on
* DGtal::KhalimskyCell.
*
Expand All @@ -99,7 +99,7 @@ namespace boost{
}
};

/**
/** @brief
* Extend boost namespace to define a boost::hash function on
* DGtal::SignedKhalimskyCell.
*
Expand Down
Loading