juicysfplugin/Source/SharesParams.h

20 lines
330 B
C
Raw Normal View History

2018-04-10 08:17:50 +08:00
//
// Created by Alex Birch on 10/04/2018.
// Copyright (c) 2018 Birchlabs. All rights reserved.
//
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
class SharesParams {
public:
virtual ~SharesParams() {}
virtual void setSoundFontPath(const String& value) = 0;
virtual String& getSoundFontPath() = 0;
};