OSDN Git Service

The first working revision.
[dirac/master.git] / Dirac / DiracURLLoader.h
1 //
2 //  DiracURLLoader.h
3 //  Dirac
4 //
5 //  Created by Ichi Kanaya on 11/04/21.
6 //  Copyright 2011 大阪大学. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface DiracURLLoader: NSObject {
12     NSURLConnection *connection;
13     NSMutableData   *data;
14 }
15
16 @property(retain, nonatomic) NSURLConnection *connection;
17 @property(retain, nonatomic) NSMutableData *data;
18
19 - (void)loadFromUrl: (NSString *)url method: (NSString *) method;
20
21 @end