home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-05 | 844 b | 41 lines | [TEXT/MMCC] |
- // CAMReminderData.h -- data access class
- // Created 10/5/95 8:02 PM by AppMaker
-
- #pragma once
-
- #include <LBroadcaster.h>
- #include "NeoTypes.h"
- #include CNeoDatabaseNativeH
-
- class CNeoDocRoot;
-
- // Define the creator type and file type for your application:
- #define kSignature 'XXXX'
- #define kFileType 'Neo '
-
- //----------
- class CAMReminderData : public LBroadcaster {
- public:
- static void InitAppData();
-
- public:
- CAMReminderData (CNeoDocRoot* inNeoDoc,
- CNeoDatabaseNative* inDatabase);
- ~CAMReminderData();
-
- void InitAMReminderData();
- void SetDirty();
-
- // accessor functions, replace these with application-specific functions:
-
- virtual void GetStuff (void* stuff);
- virtual void SetStuff (void* stuff);
-
- protected:
- CNeoDocRoot *mNeoDoc;
- CNeoDatabaseNative *mDatabase;
-
- // define your own internal data structures:
-
- };
-