bmizerany / Elephant

An Adium Plugin for keeping realtime backup/full-text search of all chats

This URL has Read+Write access

Blake Mizerany (author)
Thu Jun 04 11:52:32 -0700 2009
Elephant / Elephant.h
100644 28 lines (21 sloc) 0.497 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Elephant.h
// Elephant
//
// Created by blake on 6/3/09.
// Copyright 2009 Heroku Inc. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
#import <Adium/AIPlugin.h>
#import <Adium/AIChat.h>
#import <Adium/AIChatControllerProtocol.h>
#import <Adium/AISharedAdium.h>
#import <Adium/AIPreferencePane.h>
#import <Adium/AIPreferenceControllerProtocol.h>
 
#import "ElephantPreferencePane.h"
 
@interface Elephant : AIPlugin < AIChatObserver >
{
  NSString *URL;
}
 
-(NSString *)askForUrl;
 
@end