コード例 #1
0
ファイル: associations.cpp プロジェクト: AljGaber/imp
bool get_has_associated_node(RMF::FileConstHandle nh, Object *oi) {
  return nh.get_node_from_association(oi) != RMF::NodeConstHandle();
}
コード例 #2
0
ファイル: associations.cpp プロジェクト: AljGaber/imp
RMF::NodeConstHandle get_node_from_association(RMF::FileConstHandle nh,
                                               Object *oi) {
  AssociationType o(oi);
  return nh.get_node_from_association(o);
}