mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
25 lines
346 B
C++
25 lines
346 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __OID_RESOLVER_H
|
|
#define __OID_RESOLVER_H
|
|
|
|
#include "ui_OidResolver.h"
|
|
|
|
class OidResolver: public QWidget, public Ui::OidResolver
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
OidResolver(QWidget *w);
|
|
|
|
public slots:
|
|
void searchOid(QString s);
|
|
|
|
};
|
|
#endif
|