don't bother typedefing this

This commit is contained in:
Glenn Maynard
2006-09-07 23:58:46 +00:00
parent fb99227ff1
commit 2fa3dd658a
2 changed files with 3 additions and 5 deletions
+2 -4
View File
@@ -35,8 +35,6 @@ struct InputEvent : public DeviceInput
InputEventType type;
};
typedef vector<InputEvent> InputEventArray;
class RageMutex;
struct ButtonState;
class InputFilter
@@ -59,13 +57,13 @@ public:
float GetSecsHeld( const DeviceInput &di );
RString GetButtonComment( const DeviceInput &di ) const;
void GetInputEvents( InputEventArray &array );
void GetInputEvents( vector<InputEvent> &aEventOut );
void GetPressedButtons( vector<DeviceInput> &array );
private:
void CheckButtonChange( ButtonState &bs, DeviceInput di, const RageTimer &now );
InputEventArray queue;
vector<InputEvent> queue;
RageMutex *queuemutex;
};