mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
(copyright and licence itself remain unchanged) fix configure to set Qt include dir code justifying
25 lines
354 B
C++
25 lines
354 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __CERTDETAIL_H
|
|
#define __CERTDETAIL_H
|
|
|
|
#include "ui_CertDetail.h"
|
|
|
|
class pki_x509;
|
|
|
|
class CertDetail: public QDialog, public Ui::CertDetail
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CertDetail( QWidget *parent);
|
|
void setCert(pki_x509 *cert);
|
|
};
|
|
|
|
#endif
|