diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-09-04 19:11:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-04 19:11:53 +0300 |
commit | 3a407bb6b73a186eafd99bcec570f88097c4b2e1 (patch) | |
tree | ea57a752c348ba0a883294855ad3c62c16e9749d /src/test/testlauncher.h | |
parent | 872fc368f7b253f26714fc47323064f270b62b40 (diff) | |
download | plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.tar.gz plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.tar.bz2 plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.tar.xz plus-3a407bb6b73a186eafd99bcec570f88097c4b2e1.zip |
Add const to more classes.
Diffstat (limited to 'src/test/testlauncher.h')
-rw-r--r-- | src/test/testlauncher.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/test/testlauncher.h b/src/test/testlauncher.h index f42e22644..da8534306 100644 --- a/src/test/testlauncher.h +++ b/src/test/testlauncher.h @@ -34,13 +34,14 @@ class TestLauncher int exec(); - int calcFps(timeval *start, timeval *end, int calls); + int calcFps(const timeval *const start, const timeval *const end, + const int calls) const; - int testBackend(); + int testBackend() const; - int testSound(); + int testSound() const; - int testRescale(); + int testRescale() const; int testFps(); |