Added missing shared_ptr typedef to NonlinearFactorGraph
parent
b68923ea9a
commit
193e068cee
|
@ -44,7 +44,8 @@ namespace gtsam {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
typedef FactorGraph<NonlinearFactor<VALUES> > Base;
|
typedef FactorGraph<NonlinearFactor<VALUES> > Base;
|
||||||
typedef typename boost::shared_ptr<NonlinearFactor<VALUES> > sharedFactor;
|
typedef boost::shared_ptr<NonlinearFactorGraph<VALUES> > shared_ptr;
|
||||||
|
typedef boost::shared_ptr<NonlinearFactor<VALUES> > sharedFactor;
|
||||||
|
|
||||||
/** print just calls base class */
|
/** print just calls base class */
|
||||||
void print(const std::string& str = "NonlinearFactorGraph: ") const;
|
void print(const std::string& str = "NonlinearFactorGraph: ") const;
|
||||||
|
|
Loading…
Reference in New Issue