diff options
Diffstat (limited to 'Swiften/Base/StartStopper.h')
-rw-r--r-- | Swiften/Base/StartStopper.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Swiften/Base/StartStopper.h b/Swiften/Base/StartStopper.h new file mode 100644 index 0000000..7ea6049 --- /dev/null +++ b/Swiften/Base/StartStopper.h @@ -0,0 +1,23 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +namespace Swift { + template<typename T> class StartStopper { + public: + StartStopper(T* target) : target(target) { + target->start(); + } + + ~StartStopper() { + target->stop(); + } + + private: + T* target; + }; +} |