Cog/Plugins/HTTPSource/HTTPSource.h

29 lines
384 B
C
Raw Normal View History

//
// HTTPSource.h
// HTTPSource
//
// Created by Vincent Spader on 3/1/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <JNetLib/jnetlib.h>
#import "Plugin.h"
@interface HTTPSource : NSObject <CogSource>
{
2007-10-14 13:29:49 -03:00
NSURLConnection *_connection;
JNL_HTTPGet *_get;
long _byteCount;
2007-03-03 21:17:05 -03:00
NSString *_mimeType;
2007-10-14 13:29:49 -03:00
NSURL *_url;
}
@end