diff options
Diffstat (limited to 'Swift/Controllers/UIInterfaces/ContactEditWindowFactory.h')
-rw-r--r-- | Swift/Controllers/UIInterfaces/ContactEditWindowFactory.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/ContactEditWindowFactory.h b/Swift/Controllers/UIInterfaces/ContactEditWindowFactory.h new file mode 100644 index 0000000..8ad56c0 --- /dev/null +++ b/Swift/Controllers/UIInterfaces/ContactEditWindowFactory.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <Swift/Controllers/UIInterfaces/ContactEditWindow.h> + +namespace Swift { + class ContactEditWindowFactory { + public: + virtual ~ContactEditWindowFactory() {}; + + virtual ContactEditWindow* createContactEditWindow() = 0; + }; +} |