tilde~
Puredata Qt-based GUI
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
patchObserver.h
Go to the documentation of this file.
1 // (c) 2017 Alex Nadzharov
2 // License: GPL3
3 
4 #ifndef PATCHOBSERVER
5 #define PATCHOBSERVER
6 
7 // #include "pdServer.hpp"
8 
10 
11 using namespace xpd;
12 
13 namespace tilde {
14 
15 class PatchWindowController;
16 
17 class PatchObserver : public Observer {
18 private:
19  PatchWindowController* _patchController;
20 
21 public:
22  void setPatchController(PatchWindowController* c);
23  virtual void update(){
24  //something
25 
26  };
27 };
28 }
29 
30 #endif // CM_PDLINK_H
virtual void update()
Definition: patchObserver.h:23
Definition: patchObserver.h:17
The Patch window controller.
Definition: PatchWindowController.h:48