00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef MIDIPLAYINGDOCUMENT_H
00018 #define MIDIPLAYINGDOCUMENT_H
00019
00020
00021 #include <akndoc.h>
00022
00023
00024
00025 class CMidiPlayingDocument : public CAknDocument
00026 {
00027 public:
00028 static CMidiPlayingDocument* NewL(CEikApplication& aApp);
00029
00030 private:
00031 CMidiPlayingDocument(CEikApplication& aApp);
00032 void ConstructL();
00033
00034 private:
00035 CEikAppUi* CreateAppUiL();
00036 };
00037
00038 #endif // MIDIPLAYINGDOCUMENT_H
00039
00040