Add links to API docs

This commit is contained in:
lganzzzo 2019-03-17 14:39:10 +02:00
parent 88cdd6c0ac
commit ef7d50c4a5
3 changed files with 5 additions and 5 deletions

View File

@ -426,7 +426,7 @@ public:
/**
* Free Coroutine instance.
* See `AbstractCoroutine::free()`
* See &l:AbstractCoroutine::free ();.
*/
void free() override {
Coroutine<T>::getBench().free(static_cast<T*>(this));
@ -523,7 +523,7 @@ public:
/**
* Free Coroutine instance.
* See `AbstractCoroutine::free()`
* See &l:AbstractCoroutine::free ();.
*/
virtual void free() override {
CoroutineWithResult<T, Args...>::getBench().free(static_cast<T*>(this));

View File

@ -40,7 +40,7 @@ namespace oatpp { namespace async {
/**
* Asynchronous Executor.<br>
* Executes coroutines in multiple `oatpp::async::Processor`
* Executes coroutines in multiple &id:oatpp::async::Processor;
* allocating one thread per processor.
*/
class Executor {

View File

@ -36,12 +36,12 @@ namespace oatpp { namespace base{
class Countable {
public:
/**
* Constructor. Increment counter calling `oatpp::base::Environment::incObjects()`.
* Constructor. Increment counter calling &id:oatpp::base::Environment::incObjects;.
*/
Countable();
/**
* Virtual destructor. Decrement counter calling `oatpp::base::Environment::decObjects()`.
* Virtual destructor. Decrement counter calling &id:oatpp::base::Environment::decObjects;.
*/
virtual ~Countable();
};