removed false inline function attribute

This commit is contained in:
Thorsten Liebig 2010-04-13 18:28:46 +02:00
parent b4bc990b0f
commit 5bf478abbb
2 changed files with 8 additions and 8 deletions

View File

@ -56,7 +56,7 @@ void Engine::Reset()
curr=NULL;
}
inline void Engine::UpdateVoltages()
void Engine::UpdateVoltages()
{
unsigned int pos[3];
bool shift[3];
@ -88,7 +88,7 @@ inline void Engine::UpdateVoltages()
}
}
inline void Engine::ApplyVoltageExcite()
void Engine::ApplyVoltageExcite()
{
int exc_pos;
//soft voltage excitation here (E-field excite)
@ -101,7 +101,7 @@ inline void Engine::ApplyVoltageExcite()
}
}
inline void Engine::UpdateCurrents()
void Engine::UpdateCurrents()
{
unsigned int pos[3];
for (pos[0]=0;pos[0]<numLines[0]-1;++pos[0])
@ -127,7 +127,7 @@ inline void Engine::UpdateCurrents()
}
}
inline void Engine::ApplyCurrentExcite()
void Engine::ApplyCurrentExcite()
{
int exc_pos;
}

View File

@ -41,10 +41,10 @@ protected:
Engine(const Operator* op);
const Operator* Op;
virtual inline void UpdateVoltages();
virtual inline void ApplyVoltageExcite();
virtual inline void UpdateCurrents();
virtual inline void ApplyCurrentExcite();
virtual void UpdateVoltages();
virtual void ApplyVoltageExcite();
virtual void UpdateCurrents();
virtual void ApplyCurrentExcite();
unsigned int numLines[3];