mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
(copyright and licence itself remain unchanged) fix configure to set Qt include dir code justifying
26 lines
360 B
C++
26 lines
360 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __CERTEXTEND_H
|
|
#define __CERTEXTEND_H
|
|
|
|
#include "ui_CertExtend.h"
|
|
|
|
class pki_key;
|
|
|
|
class CertExtend: public QDialog, public Ui::CertExtend
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CertExtend(QWidget *parent);
|
|
public slots:
|
|
void applyTimeDiff();
|
|
|
|
};
|
|
#endif
|