doc: small review + added links to docsforge (close #210)

This commit is contained in:
Michele Caini 2020-06-29 16:29:45 +02:00
parent f9056e732c
commit dc67c97ab2
6 changed files with 18 additions and 9 deletions

View File

@ -26,3 +26,4 @@ richardbmx
wnsgml972
ffontaine
elindsey
erez-o

View File

@ -5,6 +5,7 @@
-->
[![Build Status](https://github.com/skypjack/uvw/workflows/build/badge.svg)](https://github.com/skypjack/uvw/actions)
[![Coverage](https://codecov.io/gh/skypjack/uvw/branch/master/graph/badge.svg)](https://codecov.io/gh/skypjack/uvw)
[![Documentation](https://img.shields.io/badge/docs-docsforge-blue)](http://uvw.docsforge.com/)
[![Download](https://api.bintray.com/packages/skypjack/conan/uvw%3Askypjack/images/download.svg)](https://bintray.com/skypjack/conan/uvw%3Askypjack/_latestVersion)
[![Gitter chat](https://badges.gitter.im/skypjack/uvw.png)](https://gitter.im/skypjack/uvw)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/skypjack)
@ -183,8 +184,11 @@ To navigate it with your favorite browser:
* `$ cd build`
* `$ your_favorite_browser docs/html/index.html`
The API reference is also available [online](https://skypjack.github.io/uvw/)
for the latest version.
The same version is also available [online](https://skypjack.github.io/uvw/)
for the latest release, that is the last stable tag. If you are looking for
something more pleasing to the eye, consider reading the nice-looking version
available on [docsforge](https://uvw.docsforge.com/): same documentation, much
more pleasant to read.
### Note
@ -349,9 +353,8 @@ It means that the following function types are all valid:
* `void(EventType &, const ResourceType &)`
* `void(const EventType &, const ResourceType &)`
Once more, please note that there is no need to keep around references to the
resources: they will pass themselves as an argument whenever an event is
published.
Please note that there is no need to keep around references to the resources:
they will pass themselves as an argument whenever an event is published.
There exist two methods to attach a listener to a resource:

View File

@ -253,7 +253,7 @@ extern template std::pair<bool, std::pair<const char *, const char *>> GetNameIn
/**
* Internal details not to be documented.
* @endcond TURN_OFF_DOXYGEN
* @endcond
*/

View File

@ -12,6 +12,11 @@
namespace uvw {
/**
* @brief Request base class.
*
* Base type for all `uvw` request types.
*/
template<typename T, typename U>
class Request: public Resource<T, U> {
protected:

View File

@ -259,7 +259,7 @@ extern template void TCPHandle::connect<IPv6>(Addr addr);
/**
* Internal details not to be documented.
* @endcond TURN_OFF_DOXYGEN
* @endcond
*/

View File

@ -644,7 +644,7 @@ extern template void UDPHandle::recv<IPv6>();
/**
* Internal details not to be documented.
* @endcond TURN_OFF_DOXYGEN
* @endcond
*/