X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e9ae1f101b5418c0ba2e6c9d86b23c12f0140982..43ac308ea20014761481bc40525496a0bb1d9740:/include/stg/notifer.h?ds=sidebyside diff --git a/include/stg/notifer.h b/include/stg/notifer.h deleted file mode 100644 index 367c5ced..00000000 --- a/include/stg/notifer.h +++ /dev/null @@ -1,22 +0,0 @@ -#pragma once - -namespace STG -{ - -template -struct PropertyNotifierBase -{ - virtual ~PropertyNotifierBase() = default; - - virtual void Notify(const T& oldValue, const T& newValue) = 0; -}; - -template -struct NotifierBase -{ - virtual ~NotifierBase() = default; - - virtual void Notify(const T& value) = 0; -}; - -}