aGrUM  0.16.0
composedLeaf.cpp
Go to the documentation of this file.
1 
29 // =======================================================
31 // =======================================================
32 
33 
34 namespace gum {
35  std::string ComposedLeaf::toString() {
36  std::stringstream ss;
37  ss << "{ Id : " << this->id() << " - Left : " << __l1->toString()
38  << " - Right : " << __l2->toString() << "}";
39  return ss.str();
40  }
41 } // namespace gum
Copyright 2005-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.
AbstractLeaf * __l1
Definition: composedLeaf.h:101
std::string toString()
Copyright 2005-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.
Definition: agrum.h:25
virtual std::string toString()=0
AbstractLeaf * __l2
Definition: composedLeaf.h:102