Skip to content

Commit

Permalink
add default constructor for boost serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
ydjian committed Sep 15, 2010
1 parent c76e9aa commit 33130a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions geometry/CalibratedCamera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

namespace gtsam {

CalibratedCamera()::CalibratedCamera() {}

CalibratedCamera::CalibratedCamera(const Pose3& pose) :
pose_(pose) {
}
Expand Down
1 change: 1 addition & 0 deletions geometry/CalibratedCamera.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ namespace gtsam {
Pose3 pose_; // 6DOF pose

public:
CalibratedCamera();
CalibratedCamera(const Pose3& pose);
CalibratedCamera(const Vector &v) ;
virtual ~CalibratedCamera();
Expand Down

0 comments on commit 33130a3

Please sign in to comment.