diff options
author | stuconnolly <stuart02@gmail.com> | 2011-06-12 13:56:11 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-06-12 13:56:11 +0000 |
commit | f3e65efba3f76cb2149fd8427af9463032d3c45d (patch) | |
tree | 0e8ebaadd24c8e206bca1f8b2a30ef6543976391 /Source/SPFavoritesExporter.h | |
parent | c1de88ac62381469ad01975c0f28e5847a65edb9 (diff) | |
download | sequelpro-f3e65efba3f76cb2149fd8427af9463032d3c45d.tar.gz sequelpro-f3e65efba3f76cb2149fd8427af9463032d3c45d.tar.bz2 sequelpro-f3e65efba3f76cb2149fd8427af9463032d3c45d.zip |
Add the ability to export favorites.
Diffstat (limited to 'Source/SPFavoritesExporter.h')
-rw-r--r-- | Source/SPFavoritesExporter.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Source/SPFavoritesExporter.h b/Source/SPFavoritesExporter.h new file mode 100644 index 00000000..058c5a42 --- /dev/null +++ b/Source/SPFavoritesExporter.h @@ -0,0 +1,52 @@ +// +// $Id$ +// +// SPFavoritesExporter.h +// sequel-pro +// +// Created by Stuart Connolly (stuconnolly.com) on May 14, 2011 +// Copyright (c) 2011 Stuart Connolly. All rights reserved. +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// More info at <http://code.google.com/p/sequel-pro/> + +#import "SPFavoritesExportProtocol.h" + +@interface SPFavoritesExporter : NSObject +{ + NSObject <SPFavoritesExportProtocol> *delegate; + + NSError *exportError; + + NSString *exportPath; + NSArray *exportFavorites; +} + +@property (readwrite, assign) NSObject <SPFavoritesExportProtocol> *delegate; + +/** + * @property exportPath The file path to export to + */ +@property (readwrite, retain) NSString *exportPath; + +/** + * @property exportFavorites The array of favorites to be exported + */ +@property (readwrite, retain) NSArray *exportFavorites; + +- (void)writeFavorites:(NSArray *)favorites toFile:(NSString *)path error:(NSError **)error; + +@end |