2011-12-08 01:55:38 +08:00
|
|
|
//Header file to test dependency checking
|
|
|
|
//
|
|
|
|
class Pose3 {
|
2012-10-02 22:40:07 +08:00
|
|
|
Pose3(const Rot3& r, const Point3& t); //What is Rot3? Throw here
|
|
|
|
static Rot3 testStaticDep(Rot3& r); //What is Rot3? Throw here
|
|
|
|
Rot3 testReturnType() const; // Throw here
|
|
|
|
void testMethodArg(const Rot3& r) const;
|
2011-12-08 01:55:38 +08:00
|
|
|
};
|