diff options
Diffstat (limited to 'Project/RateLimiter.cpp')
-rw-r--r-- | Project/RateLimiter.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Project/RateLimiter.cpp b/Project/RateLimiter.cpp index 42bede1..ea0db25 100644 --- a/Project/RateLimiter.cpp +++ b/Project/RateLimiter.cpp @@ -112,3 +112,10 @@ bool RateLimiter::Solve(double input, double timeStep) m_output = input; return true; } + +Element* RateLimiter::GetCopy() +{ + RateLimiter* copy = new RateLimiter(m_elementID); + *copy = *this; + return copy; +} |