blob: 620aab5989ab883a97ce3f43c6faa379f4ac4e0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef COMPOSER_EDITOR_H_INCLUDED
#define COMPOSER_EDITOR_H_INCLUDED
#include "PdClasses.hpp"
#include <m_pd.h>
class Editor
{
public:
static void uploadCode();
static void init(t_track_proxy *x);
static void dispatch(t_track_proxy *x, int argc, t_atom* argv);
static void openWindow(t_track_proxy *x);
static void closeWindow(t_track_proxy *x);
};
#endif // COMPOSER_EDITOR_H_INCLUDED
|