/* * Copyright (C) 2007-2012 Xagasoft, All rights reserved. * * This file is part of the libgats library and is released under the * terms of the license contained in the file LICENSE. */ #include "setupproxydlg.h" SetupProxyDlg::SetupProxyDlg( QWidget *pParent ) : QDialog( pParent ) { setupUi( this ); } SetupProxyDlg::~SetupProxyDlg() { } int SetupProxyDlg::getPortIn() const { return sbPortIn->value(); } QByteArray SetupProxyDlg::getHostOut() const { return leHostOut->text().toAscii(); } int SetupProxyDlg::getPortOut() const { return sbPortOut->value(); }