add copy constructor for HybridBayesTreeClique
parent
0938159706
commit
98d3186615
|
|
@ -50,9 +50,12 @@ class GTSAM_EXPORT HybridBayesTreeClique
|
||||||
typedef boost::shared_ptr<This> shared_ptr;
|
typedef boost::shared_ptr<This> shared_ptr;
|
||||||
typedef boost::weak_ptr<This> weak_ptr;
|
typedef boost::weak_ptr<This> weak_ptr;
|
||||||
HybridBayesTreeClique() {}
|
HybridBayesTreeClique() {}
|
||||||
virtual ~HybridBayesTreeClique() {}
|
|
||||||
HybridBayesTreeClique(const boost::shared_ptr<HybridConditional>& conditional)
|
HybridBayesTreeClique(const boost::shared_ptr<HybridConditional>& conditional)
|
||||||
: Base(conditional) {}
|
: Base(conditional) {}
|
||||||
|
///< Copy constructor
|
||||||
|
HybridBayesTreeClique(const HybridBayesTreeClique& clique) : Base(clique) {}
|
||||||
|
|
||||||
|
virtual ~HybridBayesTreeClique() {}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue