~ubuntu-branches/ubuntu/raring/muse/raring

« back to all changes in this revision

Viewing changes to synti/libsynti/mpevent.cpp.OLD

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-08-12 11:16:41 UTC
  • mfrom: (1.1.9) (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20110812111641-sjz0e93fr0ozfv0b
Tags: 2.0~beta2-1
* New maintainer (see bug 637185#12), thanks Daniel!
* New upstream release (Closes: #627371):
  - New interface Qt4-based (Closes: #604584)
* Refresh packaging:
  - Move to DH7 and source format 3.0 (quilt).
  - Refresh patchset.
  - Fix a bunch lintian warnings.
  - debian/postinst:
    + Use set -e in the body rather than pass -e on the #! line to make it
      have actually effect if it is run by hand with "sh /path/to/script".
  - Update instructions on how-to increase RTC clock frequency.
    Thanks to Torquil Macdonald Sørensen for the report (Closes: #570833).
  - Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//  $Id: mpevent.cpp,v 1.1 2004/02/12 18:30:30 wschweer Exp $
 
5
//
 
6
//  (C) Copyright 2002-2004 Werner Schweer (ws@seh.de)
 
7
//=========================================================
 
8
 
 
9
#include "mpevent.h"
 
10
 
 
11
//---------------------------------------------------------
 
12
//   MEvent
 
13
//---------------------------------------------------------
 
14
 
 
15
MEvent::MEvent(unsigned t, int port, int tpe, const unsigned char* data, int len)
 
16
      {
 
17
      _time = t;
 
18
      _port = port;
 
19
      edata.setData(data, len);
 
20
      _type = tpe;
 
21
      }
 
22