summaryrefslogtreecommitdiffstats
path: root/src/event_to_string.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 18:31:45 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 18:31:45 +0100
commit98e2535b82ab601081a56c8a22d789d2da25cfd8 (patch)
tree5627e1219725342edd6aba36cd48ba24a256ba1c /src/event_to_string.hpp
parent178d1cbe1dfc9e7b66c36cbb75590e1cee419174 (diff)
downloadpatchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.tar.gz
patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.tar.bz2
patchage-98e2535b82ab601081a56c8a22d789d2da25cfd8.zip
Use more reasonable class names
Diffstat (limited to 'src/event_to_string.hpp')
-rw-r--r--src/event_to_string.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/event_to_string.hpp b/src/event_to_string.hpp
index 0795bce..db55733 100644
--- a/src/event_to_string.hpp
+++ b/src/event_to_string.hpp
@@ -17,7 +17,7 @@
#ifndef PATCHAGE_EVENT_TO_STRING_HPP
#define PATCHAGE_EVENT_TO_STRING_HPP
-#include "PatchageEvent.hpp"
+#include "Event.hpp"
#include <iosfwd>
#include <string>
@@ -25,10 +25,10 @@
namespace patchage {
std::string
-event_to_string(const PatchageEvent& event);
+event_to_string(const Event& event);
std::ostream&
-operator<<(std::ostream& os, const PatchageEvent& event);
+operator<<(std::ostream& os, const Event& event);
} // namespace patchage