/[svn]/linuxsampler/trunk/src/network/lscpevent.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscpevent.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1685 by schoenebeck, Sun Oct 14 22:00:17 2007 UTC revision 1686 by schoenebeck, Thu Feb 14 14:58:50 2008 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 - 2007 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2008 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 76  LSCPEvent::LSCPEvent(event_t eventType, Line 76  LSCPEvent::LSCPEvent(event_t eventType,
76          this->storage = ToString(uiData) + " " + sData;          this->storage = ToString(uiData) + " " + sData;
77  }  }
78    
79    LSCPEvent::LSCPEvent(event_t eventType, int uiData1, String sData2, int uiData3, int uiData4) {
80            this->type = eventType;
81            this->storage = ToString(uiData1) + " " + sData2 + " " +
82                            ToString(uiData3) + " " + ToString(uiData4);
83    }
84    
85  LSCPEvent::LSCPEvent(event_t eventType, int uiData1, int uiData2, int uiData3) {  LSCPEvent::LSCPEvent(event_t eventType, int uiData1, int uiData2, int uiData3) {
86          this->type = eventType;          this->type = eventType;
87          this->storage = ToString(uiData1) + " " + ToString(uiData2) + " " + ToString(uiData3);          this->storage = ToString(uiData1) + " " + ToString(uiData2) + " " + ToString(uiData3);

Legend:
Removed from v.1685  
changed lines
  Added in v.1686

  ViewVC Help
Powered by ViewVC