diff options
Diffstat (limited to 'Swift/Controllers/UIInterfaces/AdHocCommandWindow.h')
-rw-r--r-- | Swift/Controllers/UIInterfaces/AdHocCommandWindow.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/Swift/Controllers/UIInterfaces/AdHocCommandWindow.h b/Swift/Controllers/UIInterfaces/AdHocCommandWindow.h index 835defe..ceb1531 100644 --- a/Swift/Controllers/UIInterfaces/AdHocCommandWindow.h +++ b/Swift/Controllers/UIInterfaces/AdHocCommandWindow.h @@ -1,14 +1,18 @@ /* - * Copyright (c) 2010 Kevin Smith - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * Copyright (c) 2010-2016 Isode Limited. + * All rights reserved. + * See the COPYING file for more information. */ #pragma once +#include <boost/signals2.hpp> + namespace Swift { - class AdHocCommandWindow { - public: - virtual ~AdHocCommandWindow() {} - }; + class AdHocCommandWindow { + public: + virtual ~AdHocCommandWindow() {} + virtual void setOnline(bool /*online*/) {} + boost::signals2::signal<void ()> onClosing; + }; } |