blob: 24a87bdc067a5b0cfd28c7228ab0a024ffac7ff1 [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
13void ChangedEvent::fire()
14{
15 for (unsigned int i = 0; i < listeners_.size(); ++i)
16 listeners_[i]();
17}
18
19}