~ubuntu-branches/ubuntu/utopic/debconf-kde/utopic

« back to all changes in this revision

Viewing changes to src/debconf.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klumpp
  • Date: 2012-04-04 08:42:09 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20120404084209-d1sym8o0inc7eo6e
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
32
/*
33
33
 * All the modifications below are licensed under this license
34
 
 * Copyright (C) 2010 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
 
34
 * Copyright (C) 2010 Daniel Nicoletti <dantti12@gmail.com>
35
35
 *
36
36
 * This library is free software; you can redistribute it and/or
37
37
 * modify it under the terms of the GNU Library General Public
145
145
 
146
146
protected:
147
147
    /**
148
 
      * This method must be overriden by the derivative class and return
 
148
      * This method must be overridden by the derivative class and return
149
149
      * current QIODevice which should be used to read data from Debconf.
150
150
      */
151
151
    virtual QIODevice* getReadDevice() const = 0;
152
152
    /**
153
 
      * This method must be overriden by the derivative class and return
 
153
      * This method must be overridden by the derivative class and return
154
154
      * current QIODevice which should be used to write data to Debconf.
155
155
      */
156
156
    virtual QIODevice* getWriteDevice() const = 0;
217
217
    virtual ~DebconfFrontendSocket();
218
218
 
219
219
    /**
220
 
      * Overriden to trigger termination of the current connection.
 
220
      * Overridden to trigger termination of the current connection.
221
221
      */
222
222
    void cancel();
223
223
 
253
253
    explicit DebconfFrontendFifo(int readfd, int writefd, QObject *parent = 0);
254
254
 
255
255
    /**
256
 
      * Overriden to trigger full disconnection
 
256
      * Overridden to trigger full disconnection
257
257
      */
258
258
    void cancel();
259
259