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 | |
Jeff Thompson | 0050abe | 2013-09-17 12:50:25 -0700 | [diff] [blame] | 13 | void |
| 14 | ChangedEvent::fire() |
Jeff Thompson | a04f23c | 2013-09-16 17:48:38 -0700 | [diff] [blame] | 15 | { |
| 16 | for (unsigned int i = 0; i < listeners_.size(); ++i) |
| 17 | listeners_[i](); |
| 18 | } |
| 19 | |
| 20 | } |