File: qasignalredirect.hpp

package info (click to toggle)
regexplorer 0.1.6-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 312 kB
  • ctags: 302
  • sloc: cpp: 3,550; makefile: 46; sh: 14
file content (37 lines) | stat: -rw-r--r-- 677 bytes parent folder | download | duplicates (2)
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
35
36
37
// 
// $Id: qasignalredirect.hpp,v 1.1 2000/06/12 10:53:28 amos-cvs Exp $
//
// Definition of QaSignalRedirect class
//
// Jan Borsodi <jb@ez.no>
// Created on: <12-Jun-2000 11:13:41 amos>
//
// Copyright (C) Jan Borsodi.  All rights reserved.

#ifndef QASIGNALREDIRECT_HPP
#define QASIGNALREDIRECT_HPP

#include <qobject.h>

class QaSignalRedirect : public QObject
{
    Q_OBJECT
public:
    QaSignalRedirect( int id, QObject *parent = 0, const char *name = 0 );
    virtual ~QaSignalRedirect();

    int id() const;
    void setID( int id );

public slots:
    void activate();

signals:
    void redirect( int id );

private:
    int ID;
};


#endif // QASIGNALREDIRECT_HPP