00001 // ------------------------------------------------------------------------- 00002 // ShpBar.h - this file contains class definitions for the 2-noded 00003 // line finite element shape for beams and truss. 00004 // ------------------------------------------------------------------------- 00005 // 00006 // $Author: evandro $ 00007 // $Revision: 1.2 $ 00008 // $Date: 1999/04/12 14:58:25 $ 00009 // $State: Exp $ 00010 // 00011 // ------------------------------------------------------------------------- 00012 00013 #ifndef _SHPBAR_H 00014 #define _SHPBAR_H 00015 00016 #include "shpline2.h" 00017 00018 // ------------------------------------------------------------------------ 00019 // Bar (Finite) Element Shape class 00020 // 00021 class cShapeBar : public cShapeLine2 00022 { 00023 public: 00024 cShapeBar( void ); 00025 virtual ~cShapeBar( void ) { } 00026 }; 00027 00028 #endif