00001
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef __GizmoEventATIX10_h
00030 #define __GizmoEventATIX10_h
00031
00032 #if HAVE_CONFIG_H
00033 #include "config.h"
00034 #endif
00035
00036 #include "GizmoEvent.hpp"
00037 #include "GizmoLinuxInputEvent.hpp"
00038 #include <string>
00039 #include <boost/shared_ptr.hpp>
00040 #include <boost/archive/text_oarchive.hpp>
00041 #include <boost/archive/text_iarchive.hpp>
00042 #include <boost/serialization/base_object.hpp>
00043
00045
00047
00048 namespace Gizmod {
00049
00051
00053
00055
00057
00064 class GizmoEventATIX10 : public GizmoEvent, public GizmoLinuxInputEvent {
00065 public:
00066
00067
00068
00069 static void buildEventsVectorFromBuffer(std::vector< boost::shared_ptr<GizmoEventATIX10> > & EventVector, H::DynamicBuffer<char> const & Buffer, bool SendNullEvents);
00070
00071
00072 GizmoEventATIX10();
00073 GizmoEventATIX10(struct input_event const & InputEvent, bool IsRemote = false);
00074 virtual ~GizmoEventATIX10();
00075
00076 protected:
00077
00078
00079
00080
00081
00082 static void buildEventsVectorFromBufferFunctor(struct input_event & InputEvent, std::vector< boost::shared_ptr<GizmoEventATIX10> > * pEventVector, bool SendNullEvents);
00083
00084 private:
00085
00086 friend class boost::serialization::access;
00087 template<class Archive>
00088 void serialize(Archive & ar, const unsigned int version) {
00089 ar & boost::serialization::base_object<GizmoEvent>(*this);
00090 ar & boost::serialization::base_object<GizmoLinuxInputEvent>(*this);
00091 }
00092 };
00093
00095
00096 }
00097
00098 #endif // __GizmoEventATIX10_h