[Gtab-cvs] src/midi MidiEvent.cpp,1.1,1.2 MidiHandler.cpp,1.1,1.2 MidiMessage.cpp,1.5,1.6 MidiParser
Status: Alpha
Brought to you by:
m0ta
|
From: Seavan <se...@us...> - 2006-02-28 07:15:29
|
Update of /cvsroot/gtab/src/midi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4121/midi Modified Files: MidiEvent.cpp MidiHandler.cpp MidiMessage.cpp MidiParser.cpp MidiStack.cpp MidiWinDevice.cpp Log Message: * memory leaks workaround Index: MidiStack.cpp =================================================================== RCS file: /cvsroot/gtab/src/midi/MidiStack.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MidiStack.cpp 27 Feb 2006 17:47:43 -0000 1.4 --- MidiStack.cpp 28 Feb 2006 07:15:24 -0000 1.5 *************** *** 1,3 **** --- 1,15 ---- + // PCH file + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection /********************************************************** * MidiStack.h Index: MidiParser.cpp =================================================================== RCS file: /cvsroot/gtab/src/midi/MidiParser.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MidiParser.cpp 27 Feb 2006 17:47:43 -0000 1.6 --- MidiParser.cpp 28 Feb 2006 07:15:24 -0000 1.7 *************** *** 1,3 **** --- 1,15 ---- + // PCH file + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection /********************************************************** * MidiParser.h Index: MidiMessage.cpp =================================================================== RCS file: /cvsroot/gtab/src/midi/MidiMessage.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** MidiMessage.cpp 27 Feb 2006 17:48:22 -0000 1.5 --- MidiMessage.cpp 28 Feb 2006 07:15:24 -0000 1.6 *************** *** 5,9 **** --- 5,15 ---- * @author S. Avanesov se...@gm... **********************************************************/ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "MidiMessage.h" Index: MidiWinDevice.cpp =================================================================== RCS file: /cvsroot/gtab/src/midi/MidiWinDevice.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MidiWinDevice.cpp 26 Feb 2006 13:46:08 -0000 1.2 --- MidiWinDevice.cpp 28 Feb 2006 07:15:24 -0000 1.3 *************** *** 26,30 **** --- 26,36 ---- * @date xx-xx-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "midi/MidiWinDevice.h" Index: MidiEvent.cpp =================================================================== RCS file: /cvsroot/gtab/src/midi/MidiEvent.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MidiEvent.cpp 26 Feb 2006 12:17:30 -0000 1.1 --- MidiEvent.cpp 28 Feb 2006 07:15:24 -0000 1.2 *************** *** 5,9 **** --- 5,21 ---- * @author S. Avanesov se...@gm... **********************************************************/ + // PCH file + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "MidiEvent.h" Index: MidiHandler.cpp =================================================================== RCS file: /cvsroot/gtab/src/midi/MidiHandler.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MidiHandler.cpp 26 Feb 2006 12:55:21 -0000 1.1 --- MidiHandler.cpp 28 Feb 2006 07:15:24 -0000 1.2 *************** *** 26,30 **** --- 26,36 ---- * @date xx-xx-04 */ + // PCH file #include "stdafx.h" + // Memory leak detection + #ifdef _DEBUG + #define new DEBUG_NEW + #endif + // -- memory leak detection #include "midi/MidiDevice.h" |