cog/Plugins/HTTPSource/HTTPSource.h

28 lines
400 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>
2007-10-14 16:29:49 +00:00
#import "Semaphore.h"
#import "Plugin.h"
@interface HTTPSource : NSObject <CogSource>
{
2007-10-14 16:29:49 +00:00
NSURLConnection *_connection;
2007-10-14 16:29:49 +00:00
long _byteCount;
BOOL _connectionFinished;
NSMutableData *_data;
Semaphore *_sem;
2007-03-04 00:17:05 +00:00
2007-10-14 16:29:49 +00:00
NSURL *_url;
}
@end