Main Page   Class Hierarchy   Data Structures   File List   Data Fields   Globals  

dstar_to_node.C

Go to the documentation of this file.
00001 #include "node.h"
00002 #include "double_star.h"
00003 
00004 bool has_dstar(node * bi) {
00005 
00006     if(bi->is_low_level_node() && (bi->get_elder_sister() == NULL) && 
00007        bi->get_parent()->get_starbase()->get_element_type()==Double) {
00008         return true;
00009     }else{
00010         return false;
00011     }
00012 }
00013 

Generated at Sun Feb 24 09:56:58 2002 for STARLAB by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001