Renaming src/StateAccess.{h,cc} to src/Notifier.{h,cc}.

The old names did not reflect the content of the files anymore.
This commit is contained in:
Robin Sommer 2019-06-08 00:27:23 +00:00
parent 6adab8d46a
commit 32f30b5c71
6 changed files with 7 additions and 7 deletions

View file

@ -302,7 +302,7 @@ set(bro_SRCS
Scope.cc Scope.cc
SerializationFormat.cc SerializationFormat.cc
Sessions.cc Sessions.cc
StateAccess.cc Notifier.cc
Stats.cc Stats.cc
Stmt.cc Stmt.cc
Tag.cc Tag.cc

View file

@ -5,7 +5,7 @@
#include "Type.h" #include "Type.h"
#include "Attr.h" #include "Attr.h"
#include "StateAccess.h" #include "Notifier.h"
#include "TraverseTypes.h" #include "TraverseTypes.h"
#include <string> #include <string>

View file

@ -1,7 +1,7 @@
// See the file "COPYING" in the main distribution directory for copyright. // See the file "COPYING" in the main distribution directory for copyright.
#include "StateAccess.h"
#include "DebugLogger.h" #include "DebugLogger.h"
#include "Notifier.h"
notifier::Registry notifier::registry; notifier::Registry notifier::registry;

View file

@ -5,8 +5,8 @@
// from notifier::Receiver and register the interesting objects with the // from notifier::Receiver and register the interesting objects with the
// notification::Registry. // notification::Registry.
#ifndef STATEACESSS_H #ifndef NOTIFIER_H
#define STATEACESSS_H #define NOTIFIER_H
#include <set> #include <set>
#include <unordered_map> #include <unordered_map>

View file

@ -4,7 +4,7 @@
#include <list> #include <list>
#include <map> #include <map>
#include "StateAccess.h" #include "Notifier.h"
#include "Traverse.h" #include "Traverse.h"
// Triggers are the heart of "when" statements: expressions that when // Triggers are the heart of "when" statements: expressions that when

View file

@ -18,7 +18,7 @@
#include "Timer.h" #include "Timer.h"
#include "ID.h" #include "ID.h"
#include "Scope.h" #include "Scope.h"
#include "StateAccess.h" #include "Notifier.h"
#include "IPAddr.h" #include "IPAddr.h"
#include "DebugLogger.h" #include "DebugLogger.h"