Show
Ignore:
Timestamp:
06/15/07 16:13:43 (1 year ago)
Author:
patrick
Message:

MFT r20307: Define all possible input base types in InputBaseTypes?.h. When

creating a new device driver you must derive from one of these
classes. This was added in an attempt to prevent bugs in device
drivers where they do not work correctly in a cluster
configuration because they are derived from an unknown
gadget::InputMixer?<S,T> instantiation.

This revision includes the fix for the VRPN driver so that it will
work in a cluster configuration again.

Bumped the Gadgeteer version to 1.1.28.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/branches/2.2/modules/gadgeteer/drivers/Logitech/ThreeDMouse/logiclass.h

    r19729 r20309  
    4646 
    4747#include <gadget/Devices/DriverConfig.h> 
     48#include <gadget/Type/InputBaseTypes.h> 
    4849#include <gadget/Type/Input.h> 
    4950#include <gadget/Type/Position.h> 
    50 #include <gadget/Type/InputMixer.h> 
    5151#include <gmtl/Vec.h> 
    5252#include <vector> 
     
    8585*/ 
    8686//class ThreeDMouse : public gadget::Input, public gadget::Position 
    87 class ThreeDMouse : public InputMixer<Input,Position> 
     87class ThreeDMouse 
     88   : public input_position_t 
    8889{ 
    8990public: