Cog/Plugins/HTTPSource/HTTPSource.h
vspader c536ea06a5 Removed useless PropertiesReader classes.
PluginController now uses the decoder if a properties reader class is not found.
PropertiesReaders should still be created if performance can be improved if code is only reading properties.
2007-10-14 17:31:20 +00:00

31 lines
451 B
Objective-C

//
// HTTPSource.h
// HTTPSource
//
// Created by Vincent Spader on 3/1/07.
// Copyright 2007 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "Semaphore.h"
#import "Plugin.h"
@interface HTTPSource : NSObject <CogSource>
{
NSURLConnection *_connection;
long _byteCount;
BOOL _responseReceived;
BOOL _connectionFinished;
NSMutableData *_data;
Semaphore *_sem;
NSString *_mimeType;
NSURL *_url;
}
@end