2007-03-02 01:36:52 +00:00
|
|
|
//
|
|
|
|
// HTTPSource.h
|
|
|
|
// HTTPSource
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/1/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
#import "Plugin.h"
|
|
|
|
|
2009-03-07 09:25:13 +00:00
|
|
|
@class HTTPConnection;
|
|
|
|
|
2007-03-02 01:36:52 +00:00
|
|
|
@interface HTTPSource : NSObject <CogSource>
|
|
|
|
{
|
2009-03-07 09:25:13 +00:00
|
|
|
HTTPConnection *_connection;
|
2007-10-14 17:31:20 +00:00
|
|
|
|
2009-03-05 06:29:47 +00:00
|
|
|
long _byteCount;
|
2007-03-04 00:17:05 +00:00
|
|
|
|
2007-10-14 17:31:20 +00:00
|
|
|
NSString *_mimeType;
|
2007-03-02 01:36:52 +00:00
|
|
|
}
|
|
|
|
|
2009-03-07 09:25:13 +00:00
|
|
|
|
|
|
|
|
2007-03-02 01:36:52 +00:00
|
|
|
@end
|