#include "FPcommon.h"
Include dependency graph for FPcommon.cxx:
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &out, const ORIENT &orient) |
|
Definition at line 43 of file FPcommon.cxx. References parquetfp::E, parquetfp::FE, parquetfp::FN, parquetfp::FS, parquetfp::FW, parquetfp::N, parquetfp::S, and parquetfp::W.
00044 { 00045 if(orient == N) 00046 out<<"N"; 00047 else if(orient == E) 00048 out<<"E"; 00049 else if(orient == S) 00050 out<<"S"; 00051 else if(orient == W) 00052 out<<"W"; 00053 else if(orient == FN) 00054 out<<"FN"; 00055 else if(orient == FE) 00056 out<<"FE"; 00057 else if(orient == FS) 00058 out<<"FS"; 00059 else if(orient == FW) 00060 out<<"FW"; 00061 else 00062 cout<<"ERROR in outputting orientations"<<endl; 00063 return out; 00064 } |