~ubuntu-branches/ubuntu/oneiric/xca/oneiric

« back to all changes in this revision

Viewing changes to widgets/ExportCert.h

  • Committer: Bazaar Package Importer
  • Author(s): Tino Keitel
  • Date: 2009-09-14 20:55:44 UTC
  • Revision ID: james.westby@ubuntu.com-20090914205544-l4qsm2tjimhd62vo
Tags: upstream-0.7.0
ImportĀ upstreamĀ versionĀ 0.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* vi: set sw=4 ts=4:
 
2
 *
 
3
 * Copyright (C) 2001 - 2007 Christian Hohnstaedt.
 
4
 *
 
5
 * All rights reserved.
 
6
 */
 
7
 
 
8
#ifndef __EXPORTCERT_H
 
9
#define __EXPORTCERT_H
 
10
 
 
11
#include "ui_ExportCert.h"
 
12
 
 
13
class ExportCert: public QDialog, public Ui::ExportCert
 
14
{
 
15
        Q_OBJECT
 
16
 
 
17
   private:
 
18
        QString tinyCAfname;
 
19
 
 
20
   public:
 
21
        ExportCert(QWidget *parent, QString fname, bool hasKey);
 
22
 
 
23
   public slots:
 
24
        void on_fileBut_clicked();
 
25
        void on_exportFormat_activated(int);
 
26
};
 
27
 
 
28
#endif