|
FEBio
1.5.0
|
00001 #pragma once 00002 #include "FEDiagnostic.h" 00003 00004 class FEPrintMatrixDiagnostic : public FEDiagnostic 00005 { 00006 public: 00007 FEPrintMatrixDiagnostic(FEM& fem); 00008 ~FEPrintMatrixDiagnostic(void); 00009 00010 bool ParseSection(XMLTag& tag); 00011 00012 bool Run(); 00013 00014 protected: 00015 char m_szout[1024]; 00016 int m_rng[4]; 00017 };
1.7.5.1