mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
New classes: - database_model: Manage the database tables (keys, req, cert, crl, templ) extracted from widgets/MW_database.cpp - arguments: parse commandline, dynamically create help text
23 lines
360 B
C++
23 lines
360 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2006 - 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __CRLTREEVIEW_H
|
|
#define __CRLTREEVIEW_H
|
|
|
|
#include "XcaTreeView.h"
|
|
#include "lib/database_model.h"
|
|
|
|
class CrlTreeView: public XcaTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CrlTreeView(QWidget *parent);
|
|
void setModels(database_model *models);
|
|
};
|
|
#endif
|