loop member is now protected (could be useful)

This commit is contained in:
Emiel Bruijntjes 2015-11-17 10:06:26 +01:00
parent 8c1b427e9b
commit 1fc239f9fe
1 changed files with 3 additions and 2 deletions

View File

@ -95,13 +95,14 @@ private:
} }
}; };
protected:
/** /**
* The event loop * The event loop
* @var struct ev_loop* * @var struct ev_loop*
*/ */
struct ev_loop *_loop; struct ev_loop *_loop;
private:
/** /**
* All I/O watchers that are active, indexed by their filedescriptor * All I/O watchers that are active, indexed by their filedescriptor
* @var std::map<int,Watcher> * @var std::map<int,Watcher>