![]() |
Mixxx
|
00001 /*************************************************************************** 00002 engineobject.cpp - description 00003 ------------------- 00004 begin : Wed Feb 20 2002 00005 copyright : (C) 2002 by Tue and Ken Haste Andersen 00006 email : 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #include "engineobject.h" 00019 00020 // Static member variable definition 00021 //int EngineObject::PLAY_SRATE = 0; 00022 00023 EngineObject::EngineObject() 00024 { 00025 } 00026 00027 EngineObject::~EngineObject() 00028 { 00029 } 00030 00031 /* 00032 void EngineObject::setPlaySrate(int srate) 00033 { 00034 PLAY_SRATE = srate; 00035 } 00036 00037 int EngineObject::getPlaySrate() 00038 { 00039 return PLAY_SRATE; 00040 } 00041 00042 */ 00043