mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 02:56:18 +05:00
(copyright and licence itself remain unchanged) fix configure to set Qt include dir code justifying
29 lines
427 B
C++
29 lines
427 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef VALIDITY_H
|
|
#define VALIDITY_H
|
|
|
|
#include <qdatetimeedit.h>
|
|
#include <lib/asn1time.h>
|
|
|
|
class Validity : public QDateTimeEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Validity( QWidget* parent);
|
|
~Validity();
|
|
a1time getDate() const;
|
|
void setDate(const a1time &t, int midnight = 0);
|
|
public slots:
|
|
void setNow();
|
|
|
|
};
|
|
|
|
#endif
|