File size: 352 Bytes
b6bd94d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
 * Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */

#pragma once

#include "ui_about.h"
#include "dict/dictionary.hh"
#include <QDialog>

class About: public QDialog
{
  Q_OBJECT

public:
  explicit About( QWidget * parent );

private:

  Ui::About ui;
};