~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to arts/midi/miditest_impl.cc

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    */
22
22
 
23
23
#include "midimanager_impl.h"
24
 
#include "stdio.h"
 
24
#include <stdio.h>
25
25
 
26
26
namespace Arts {
27
27
 
31
31
        {
32
32
                return TimeStamp(0,0);
33
33
        }
 
34
        Arts::TimeStamp playTime()
 
35
        {
 
36
                return time();
 
37
        }
34
38
        void processCommand(const MidiCommand& command)
35
39
        {
36
40
                if((command.status & mcsCommandMask) == mcsNoteOn)
49
53
};
50
54
 
51
55
REGISTER_IMPLEMENTATION(MidiTest_impl);
52
 
};
 
56
}
53
57