?? initial.hxx
字號:
// *******************************
// *** CLASS INITIAL CONDITION ***
// *******************************
#include "load.hxx"
#include "dictionr.hxx"
class InitialCondition : public Load
/*
This class implements an initial condition. An initial condition is usu-
ally attribute of one or more degrees of freedom.
*/
{
private :
Dictionary* initialValueDictionary ;
public :
InitialCondition (int i,Domain* d) : Load(i,d)
{ initialValueDictionary = NULL ;}
~InitialCondition () { delete initialValueDictionary ;}
double give (char) ;
int hasConditionOn (char u) ;
void instanciateYourself () { this -> readConditions();}
void printYourself () ;
void readConditions () ;
} ;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -