diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-10 03:29:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-10 03:29:39 +0300 |
commit | 1d3118ec21f537695dc0e6a9608acd67396d0a51 (patch) | |
tree | 5cf9229b2d23f2a7a584b5fed9aaead306df6496 /src/test | |
parent | dd996d01676d7dca3eec442b14c4966ba0bb0935 (diff) | |
download | mv-1d3118ec21f537695dc0e6a9608acd67396d0a51.tar.gz mv-1d3118ec21f537695dc0e6a9608acd67396d0a51.tar.bz2 mv-1d3118ec21f537695dc0e6a9608acd67396d0a51.tar.xz mv-1d3118ec21f537695dc0e6a9608acd67396d0a51.zip |
Delete copy constructor from other classes.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/testlauncher.h | 4 | ||||
-rw-r--r-- | src/test/testmain.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/test/testlauncher.h b/src/test/testlauncher.h index baa20c921..8bb7c99f0 100644 --- a/src/test/testlauncher.h +++ b/src/test/testlauncher.h @@ -29,11 +29,15 @@ #include <string> #include <sys/time.h> +#include "localconsts.h" + class TestLauncher { public: TestLauncher(std::string test); + A_DELETE_COPY(TestLauncher); + ~TestLauncher(); int exec(); diff --git a/src/test/testmain.h b/src/test/testmain.h index 69d2b8f77..e38639126 100644 --- a/src/test/testmain.h +++ b/src/test/testmain.h @@ -34,6 +34,8 @@ class TestMain public: TestMain(); + A_DELETE_COPY(TestMain); + int exec(const bool testAudio = true); static int readValue(const int ver, int def); |