blob: 63b4569f9927c3c41f3f991a7ad3bd7fb6dd3c99 [file] [log] [blame]
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#include "changed-event.hpp"
using namespace std;
namespace ndn {
void
ChangedEvent::fire()
{
for (size_t i = 0; i < listeners_.size(); ++i)
listeners_[i]();
}
}