box2dweldjoint.h 457 B

1234567891011121314151617181920212223242526272829
  1. #ifndef BOX2DWELDJOINT_H
  2. #define BOX2DWELDJOINT_H
  3. #include "box2djoint.h"
  4. #include <Box2D.h>
  5. class b2World;
  6. class b2WeldJoint;
  7. class b2WeldJointDef;
  8. class Box2DWeldJoint : public Box2DJoint
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit Box2DWeldJoint(QDeclarativeItem *parent = 0);
  13. void createJoint();
  14. signals:
  15. public slots:
  16. private:
  17. b2WeldJointDef mWeldJointDef;
  18. b2WeldJoint *mWeldJoint;
  19. };
  20. #endif // BOX2DWELDJOINT_H