00001 /* 00002 The zlib/libpng License 00003 00004 Copyright (c) 2006 Phillip Castaneda (pjcast -- www.wreckedgames.com) 00005 00006 This software is provided 'as-is', without any express or implied warranty. In no event will 00007 the authors be held liable for any damages arising from the use of this software. 00008 00009 Permission is granted to anyone to use this software for any purpose, including commercial 00010 applications, and to alter it and redistribute it freely, subject to the following 00011 restrictions: 00012 00013 1. The origin of this software must not be misrepresented; you must not claim that 00014 you wrote the original software. If you use this software in a product, 00015 an acknowledgment in the product documentation would be appreciated but is 00016 not required. 00017 00018 2. Altered source versions must be plainly marked as such, and must not be 00019 misrepresented as being the original software. 00020 00021 3. This notice may not be removed or altered from any source distribution. 00022 */ 00023 #include "linux/LinuxForceFeedback.h" 00024 #include "OISException.h" 00025 00026 using namespace OIS; 00027 00028 //--------------------------------------------------------------// 00029 LinuxForceFeedback::LinuxForceFeedback() 00030 { 00031 } 00032 //--------------------------------------------------------------// 00033 LinuxForceFeedback::~LinuxForceFeedback() 00034 { 00035 } 00036 00037 //--------------------------------------------------------------// 00038 void LinuxForceFeedback::setMasterGain(float) 00039 { 00040 } 00041 00042 //--------------------------------------------------------------// 00043 void LinuxForceFeedback::setAutoCenterMode(bool) 00044 { 00045 } 00046 00047 //--------------------------------------------------------------// 00048 void LinuxForceFeedback::upload( const Effect* /*effect*/ ) 00049 { 00050 } 00051 00052 //--------------------------------------------------------------// 00053 void LinuxForceFeedback::modify( const Effect* /*effect*/ ) 00054 { 00055 } 00056 00057 //--------------------------------------------------------------// 00058 void LinuxForceFeedback::remove( const Effect* /*effect*/ ) 00059 { 00060 } 00061
1.5.4