aboutsummaryrefslogtreecommitdiffstats
path: root/trunk/CMMCPConnection.h
diff options
context:
space:
mode:
authorabhibeckert <abhi@abhibeckert.com>2008-12-07 07:56:46 +0000
committerabhibeckert <abhi@abhibeckert.com>2008-12-07 07:56:46 +0000
commit5a57ab32d28a9c2b3538a73f2fd965558a39abe1 (patch)
tree0a5920a89300ab336ddb31fa1f192e0fbad77a91 /trunk/CMMCPConnection.h
parent7335363a2df6a7bc9ce6e02d109c31ffc670a097 (diff)
downloadsequelpro-5a57ab32d28a9c2b3538a73f2fd965558a39abe1.tar.gz
sequelpro-5a57ab32d28a9c2b3538a73f2fd965558a39abe1.tar.bz2
sequelpro-5a57ab32d28a9c2b3538a73f2fd965558a39abe1.zip
update version/copyright in tag
Diffstat (limited to 'trunk/CMMCPConnection.h')
-rw-r--r--trunk/CMMCPConnection.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/trunk/CMMCPConnection.h b/trunk/CMMCPConnection.h
new file mode 100644
index 00000000..d564d96b
--- /dev/null
+++ b/trunk/CMMCPConnection.h
@@ -0,0 +1,37 @@
+//
+// CMMCPConnection.h
+// sequel-pro
+//
+// Created by lorenz textor (lorenz@textor.ch) on Wed Sept 21 2005.
+// Copyright (c) 2002-2003 Lorenz Textor. 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/>
+// Or mail to <lorenz@textor.ch>
+
+#import <Cocoa/Cocoa.h>
+#import <MCPKit_bundled/MCPKit_bundled.h>
+#import "CMMCPResult.h"
+
+@interface CMMCPConnection : MCPConnection {
+ id delegate;
+}
+
+- (CMMCPResult *)queryString:(NSString *) query;
+- (void)setDelegate:(id)object;
+- (NSTimeZone *)timeZone;
+
+@end