Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Node.hpp File Reference
#include "MVec.hpp"
Include dependency graph for Node.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Node
 This class encapsulate a node over a window manifold. More...
 

Functions

ostream & operator<< (ostream &stream, Node &n)
 
istream & operator>> (istream &stream, Node &n)
 

Function Documentation

ostream& operator<< ( ostream &  stream,
Node n 
)
inline

Definition at line 156 of file Node.hpp.

References Node::d_ID, and Node::d_position.

156  {
157  stream << n.d_ID << '\t' << n.d_position << endl;
158  return stream;
159 }
MVec d_position
Definition: Node.hpp:99
int d_ID
Definition: Node.hpp:100
istream& operator>> ( istream &  stream,
Node n 
)
inline

Definition at line 161 of file Node.hpp.

References Node::d_ID, and Node::d_position.

161  {
162  stream >> n.d_ID >> n.d_position;
163  return stream;
164 }
MVec d_position
Definition: Node.hpp:99
int d_ID
Definition: Node.hpp:100