first commit
This commit is contained in:
commit
452c5cabba
20 changed files with 863 additions and 0 deletions
5
Source/Veno/GUI/Components/BaseComponent.cpp
Normal file
5
Source/Veno/GUI/Components/BaseComponent.cpp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
//
|
||||
// Created by versustune on 17.03.20.
|
||||
//
|
||||
|
||||
#include "BaseComponent.h"
|
||||
25
Source/Veno/GUI/Components/BaseComponent.h
Normal file
25
Source/Veno/GUI/Components/BaseComponent.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
//
|
||||
// Created by versustune on 17.03.20.
|
||||
//
|
||||
|
||||
#ifndef VENO_BASECOMPONENT_H
|
||||
#define VENO_BASECOMPONENT_H
|
||||
|
||||
#include "JuceHeader.h"
|
||||
#include <string>
|
||||
|
||||
/**
|
||||
* this is the base Component of all VeNo Components... it has all important Methods
|
||||
*/
|
||||
class BaseComponent : public Component {
|
||||
private:
|
||||
std::string prefix;
|
||||
public:
|
||||
BaseComponent() = default;
|
||||
~BaseComponent() = default;
|
||||
|
||||
protected:
|
||||
};
|
||||
|
||||
|
||||
#endif //VENO_BASECOMPONENT_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue