From 6f802002196c510c403c98a4837dcf4bb2651f6f Mon Sep 17 00:00:00 2001 From: Alex Birch Date: Mon, 29 Jul 2019 22:05:50 +0100 Subject: [PATCH] unused --- Source/StateChangeSubscriber.h | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Source/StateChangeSubscriber.h diff --git a/Source/StateChangeSubscriber.h b/Source/StateChangeSubscriber.h deleted file mode 100644 index 420a26a..0000000 --- a/Source/StateChangeSubscriber.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Created by Alex Birch on 18/03/2018. -// Copyright (c) 2018 Birchlabs. All rights reserved. -// - -#pragma once - -#include "../JuceLibraryCode/JuceHeader.h" - -class StateChangeSubscriber { -public: - virtual ~StateChangeSubscriber() {} // pass pointer ownership to another party without exposing the concrete derived class - virtual void getStateInformation (XmlElement& xml) = 0; - virtual void setStateInformation (XmlElement* xmlState) = 0; -};