aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDataBase64EncodingAdditions.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-03-18 20:14:17 +0000
committerstuconnolly <stuart02@gmail.com>2012-03-18 20:14:17 +0000
commit0d3b69f964a8d9d93ca794d457b461463f1ec95d (patch)
treeb9d0953b2dcb3fe6cbe1121f816222a943881b5d /Source/SPDataBase64EncodingAdditions.h
parent524e8c356b4074f5be5933b0551374a130a8f6d1 (diff)
downloadsequelpro-0d3b69f964a8d9d93ca794d457b461463f1ec95d.tar.gz
sequelpro-0d3b69f964a8d9d93ca794d457b461463f1ec95d.tar.bz2
sequelpro-0d3b69f964a8d9d93ca794d457b461463f1ec95d.zip
Bring outline view branch up to date with trunk (r3518:r3520).
Diffstat (limited to 'Source/SPDataBase64EncodingAdditions.h')
-rw-r--r--Source/SPDataBase64EncodingAdditions.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/Source/SPDataBase64EncodingAdditions.h b/Source/SPDataBase64EncodingAdditions.h
new file mode 100644
index 00000000..63812025
--- /dev/null
+++ b/Source/SPDataBase64EncodingAdditions.h
@@ -0,0 +1,31 @@
+//
+// $Id$
+//
+// SPDataBase64EncodingAdditions.m
+// sequel-pro
+//
+// Created by Rowan Beentje on March 18th, 2012
+//
+// 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/>
+
+
+@interface NSData (SPDataBase64EncodingAdditions)
+
+- (NSString *)base64Encoding;
+- (NSString *)base64EncodingWithLineLength:(NSUInteger)lineLength;
+
+@end