~ubuntu-branches/ubuntu/oneiric/kde4libs/oneiric-proposed

« back to all changes in this revision

Viewing changes to kio/misc/kpac/discovery.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-07-08 00:08:34 UTC
  • mto: This revision was merged to the branch mainline in revision 247.
  • Revision ID: package-import@ubuntu.com-20110708000834-dr9a8my4iml90qe5
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef KPAC_DISCOVERY_H
22
22
#define KPAC_DISCOVERY_H
23
23
 
24
 
#include <QtCore/QObject>
25
 
 
26
24
#include "downloader.h"
 
25
 
27
26
class KProcess;
28
27
 
29
28
namespace KPAC
41
40
        void helperOutput();
42
41
 
43
42
    private:
44
 
        bool initHostName();
 
43
        bool initDomainName();
45
44
        bool checkDomain() const;
46
45
 
47
46
        KProcess* m_helper;
48
 
        QString m_hostname;
 
47
        QString m_domainName;
49
48
    };
50
49
}
51
50