cog/Plugins/HTTPSource/HTTPSource.h

27 lines
342 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 "Plugin.h"
@class HTTPConnection;
@interface HTTPSource : NSObject <CogSource>
{
HTTPConnection *_connection;
long _byteCount;
2007-03-04 00:17:05 +00:00
NSString *_mimeType;
}
@end