1#if !defined( BL_NODE_H ) 2#define BL_NODE_H 3 4#include <fstream> 5 6class Node 7{ 8public: 9 Node() { tag = 0; x = y = 0; boundarynode = false; } 10 11 int tag; 12 bool boundarynode; 13 double x,y; 14}; 15 16std::ostream& operator<< (std::ostream& o, const Node& A); 17 18#endif /* BL_NODE_H */ 19 20