mFES - molecular Finite Element Solver  0.4
tCycle.h
Go to the documentation of this file.
00001 #ifndef TCYCLE_H
00002 #define TCYCLE_H
00003 
00004 #include <map>
00005 #include <vcg/space/point3.h>
00006 
00007 using namespace std;
00008 
00009 class tCycle {
00010 
00011 public:
00012         map< int, map< Point3<float>, float > > m;
00013         map< int, map< Point3<float>, float > > p;
00014 
00015 };
00016 
00017 #endif