1 /* 2 3 Chart.h 4 5 by Pierre Raynaud-Richard. 6 7 */ 8 9 /* 10 Copyright 1999, Be Incorporated. All Rights Reserved. 11 This file may be used under the terms of the Be Sample Code License. 12 */ 13 14 #ifndef CHART_H 15 #define CHART_H 16 17 #include <Application.h> 18 19 #include "ChartWindow.h" 20 21 22 /* not too much to be said... */ 23 class ChartApp : public BApplication { 24 public: 25 ChartApp(); 26 private: 27 ChartWindow *fWindow; 28 }; 29 30 #endif 31