Jeff Thompson | a04f23c | 2013-09-16 17:48:38 -0700 | [diff] [blame] | 1 | /** |
2 | * Copyright (C) 2013 Regents of the University of California. | ||||
3 | * @author: Jeff Thompson <jefft0@remap.ucla.edu> | ||||
4 | * See COPYING for copyright and distribution information. | ||||
5 | */ | ||||
6 | |||||
7 | #include "changed-event.hpp" | ||||
8 | |||||
9 | using namespace std; | ||||
10 | |||||
11 | namespace ndn { | ||||
12 | |||||
13 | void ChangedEvent::fire() | ||||
14 | { | ||||
15 | for (unsigned int i = 0; i < listeners_.size(); ++i) | ||||
16 | listeners_[i](); | ||||
17 | } | ||||
18 | |||||
19 | } |