// File: inputdata.h
// Created by: <Jörn Reimerdes>
// Created on: 22.03.2005

/**
 * inputdata.h - is part of the iwear-framework
 * @file
 * $Id: testfunctor.h 1358 2005-04-19 10:43:00Z jrei $
 * $Revision: 1358 $
 * $Author: jrei $
 * $Date: 2005-04-19 12:43:00 +0200 (Di, 19 Apr 2005) $
 *
 * This file is part of The iWear Framework.
 * In particular this file is part of the Framework Input Library
 *
 * The iWear Framework is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by the
 * Free Software Foundation as in version 2 of the License.

 * 
 * The iWear Framework is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * The iWear Framework; if not, write to the Free Software Foundation, Inc., 59
 * Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef __TESTFUNCTOR_H
#define __TESTFUNCTOR_H

#ifndef __FUNCTOR_H
#include <iwear/functor.h>
#endif

#ifndef __KEYINPUTDATA_H
#include <iwear_input/joystickinputdata.h>
#endif


namespace iwear {
namespace input {


/** TestFunctor stores all data which is common to all TestFunctor
 * subclasses.
 */
class TestFunctor : public Functor<JoystickInputData>
{
public:

    TestFunctor( void );

    /** Delets the TestFunctor.
     */
    ~TestFunctor( void );

    void operator()(const JoystickInputData& joystick_input_data);

protected:

private: 
};

} // input
} // iwear
#endif	//__TESTFUNCTOR_H

