]> git.stg.codes - stg.git/blobdiff - include/stg/notifer.h
Complete replacement notifiers with subscriptions.
[stg.git] / include / stg / notifer.h
diff --git a/include/stg/notifer.h b/include/stg/notifer.h
deleted file mode 100644 (file)
index 367c5ce..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-namespace STG
-{
-
-template <typename T>
-struct PropertyNotifierBase
-{
-    virtual ~PropertyNotifierBase() = default;
-
-    virtual void Notify(const T& oldValue, const T& newValue) = 0;
-};
-
-template <typename T>
-struct NotifierBase
-{
-    virtual ~NotifierBase() = default;
-
-    virtual void Notify(const T& value) = 0;
-};
-
-}