File: aptsettingswidget.h

package info (click to toggle)
packagesearch 2.10.1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,704 kB
  • sloc: cpp: 9,176; perl: 248; makefile: 15; sh: 11
file content (34 lines) | stat: -rw-r--r-- 759 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// C++ Interface: aptsettingswidget
//
// Description: 
//
//
// Author: Benjamin Mesing <bensmail@gmx.net>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef __APTSETTINGSWIDGET_H_20080605
#define __APTSETTINGSWIDGET_H_20080605

#include <QWidget>
#include "ui_aptsettingswidget.h"

#include "installationtool.h"

/**
	@author Benjamin Mesing <bensmail@gmx.net>
*/
class AptSettingsWidget : public QWidget, public Ui::AptSettingsWidget
{
public:
	
	AptSettingsWidget(QWidget* pParent);
	~AptSettingsWidget();
	/** Returns the installation tool selected by the user. */
	NApt::InstallationTool installationTool();
	void setInstallationTool(NApt::InstallationTool tool);
};

#endif	// __APTSETTINGSWIDGET_H_20080605