00001 /*************************************************************************** 00002 * * 00003 * This program is free software; you can redistribute it and/or modify * 00004 * it under the terms of the GNU General Public License as published by * 00005 * the Free Software Foundation; either version 2 of the License, or * 00006 * (at your option) any later version. * 00007 * * 00008 ***************************************************************************/ 00014 #include <config.h> 00015 00016 00017 using namespace std; 00018 00019 class OfxCallbackHandler 00020 { 00021 public: 00022 OfxCallbackHandler( OfxCallbackFunc param_func, void * param_user_data ) 00023 ; 00024 OfxCallbackHandler( OfxCallbackFunc param_func): OfxCallbackHandler(param_func,NULL); 00025 00026 private: 00027 OfxCallbackFunc func; 00028 void * func_data; 00029 };