// Copyright (c) Sean Walton 1999-2006 All rights reserved // // Standard disclaimer: you use it --> you're responsible // Standard license: you can use it in any way, but keep // my copyright attached. #include "BBGrid.h" #ifndef BBCALENDAR_H #define BBCALENDAR_H /////////////////////////////////////////////////////////////////////////////////////// /// BBCalendar class BBCalendar: public BBGrid { private: TIME time; public: BBCalendar(void); public: virtual FIELDTYPE GetFieldType( FIELDTYPE * pDerived = NULL ) { return (FIELDTYPE)102; } public: void SetDate(TIME& t); const TIME GetDate(void) { return time; } virtual void NowDisplaying(ubyte row, ubyte col, Graphics& area); virtual bool AllowSelect(ubyte r, ubyte c); }; #endif