Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:17

0001 // name=sflowTest ; gcc $name.cc -std=c++11 -lstdc++ -I.. -o /tmp/$name && /tmp/$name
0002 
0003 #include <iostream>
0004 #include <iomanip>
0005 
0006 #include "sflow.h"
0007 
0008 int main()
0009 {
0010     for(unsigned i=0 ; i <= LAST ; i++ ) std::cout << std::setw(3) << i << " " << sflow::desc(i) << std::endl ; 
0011     return 0 ; 
0012 } 
0013 
0014