annotate Source/MyPlot.h @ 0:2fa9c10568d1

Initial setup.
author martinm_home <martin.morrell@eecs.qmul.ac.uk>
date Tue, 14 Aug 2012 09:34:15 +0100
parents
children 503cbcdd0b2a
rev   line source
martin@0 1 //
martin@0 2 // MyPlot.h
martin@0 3 // SoundField
martin@0 4 //
martin@0 5 // Created by Martin Morrell on 25/06/2012.
martin@0 6 // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
martin@0 7 //
martin@0 8
martin@0 9 //#ifndef SoundField_MyPlot_h
martin@0 10 //#define SoundField_MyPlot_h
martin@0 11
martin@0 12
martin@0 13 // include VSTGUI
martin@0 14 #ifndef __vstgui__
martin@0 15 #include "vstgui.h"
martin@0 16 #endif
martin@0 17
martin@0 18
martin@0 19
martin@0 20
martin@0 21 class MyPlot : public CControl
martin@0 22 {
martin@0 23 public:
martin@0 24 // MyPlot(CRect& size, CControlListener* listener, int tag,
martin@0 25 // CBitmap *Background, CPoint& offset);
martin@0 26 //MyPlot();
martin@0 27 virtual ~MyPlot();
martin@0 28
martin@0 29 public:
martin@0 30 void draw(CDrawContext* context);
martin@0 31 };
martin@0 32
martin@0 33