~gnomefreak/firefox-extensions/firegpg.ubuntu

« back to all changes in this revision

Viewing changes to FireGPGCall/FireGPGCall.h

  • Committer: John Vivirito
  • Date: 2008-08-12 11:47:33 UTC
  • Revision ID: gnomefreak@ubuntu.com-20080812114733-hn73tjxi26ylibrf
* import of upstream source version 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _FireGPGCall_h
 
2
#define _FireGPGCall_h
 
3
 
 
4
#include "IFireGPGCall.h"
 
5
#include "IPCProcess.h"
 
6
#define FIREGPG_CALL_CONTRACTID "@getfiregpg.org/XPCOM/FireGPGCall;1"
 
7
#define FIREGPG_CALL_CLASSNAME "XpCOM to access to gpg (and pgp) for FireGPG"
 
8
#define FIREGPG_CALL_CID {0xfa6b4f61, 0x5828, 0x4e15, \
 
9
    { 0xae, 0xbb, 0x02, 0xd8, 0xdb, 0xfa, 0x68, 0x9f }}
 
10
 
 
11
/* Header file */
 
12
class FireGPGCall : public IFireGPGCall
 
13
{
 
14
public:
 
15
  NS_DECL_ISUPPORTS
 
16
  NS_DECL_IFIREGPGCALL
 
17
 
 
18
  FireGPGCall();
 
19
 
 
20
private:
 
21
  ~FireGPGCall();
 
22
 
 
23
protected:
 
24
  /* additional members */
 
25
};
 
26
 
 
27
#endif //_FireGPGCall_h