2020-06-14 21:14:28 +02:00
|
|
|
//
|
|
|
|
// Created by versustune on 14.06.20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef VENO_VENOSTATE_H
|
|
|
|
#define VENO_VENOSTATE_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "../GUI/GUIParts/ConfigScreen/VenoConfigScreen.h"
|
|
|
|
|
|
|
|
class VeNoState
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::string m_pid = "";
|
2020-07-09 16:31:33 +02:00
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (VeNoState);
|
2020-06-14 21:14:28 +02:00
|
|
|
public:
|
|
|
|
VeNoState(std::string pid);
|
|
|
|
~VeNoState();
|
|
|
|
VenoConfigScreen* configScreen = nullptr;
|
|
|
|
};
|
|
|
|
#endif //VENO_VENOSTATE_H
|