blob: 1d12c75cad6fbc5ba394f4c04f22ba8d43653816 [file] [log] [blame]
Jeff Thompsona04f23c2013-09-16 17:48:38 -07001/**
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
9using namespace std;
10
11namespace ndn {
12
Jeff Thompson0050abe2013-09-17 12:50:25 -070013void
14ChangedEvent::fire()
Jeff Thompsona04f23c2013-09-16 17:48:38 -070015{
16 for (unsigned int i = 0; i < listeners_.size(); ++i)
17 listeners_[i]();
18}
19
20}