qt/com.nokia.carbide.cpp.qt.test/Data/TestProject2/main.cpp
author tzelaw
Tue, 14 Apr 2009 15:03:19 -0500
changeset 94 d74b720418db
parent 2 d760517a8095
permissions -rw-r--r--
Test framework support: Ask debugger to remember DebugTarget so test framework can use it to setup test framework related utility. With this we can use the DebugUI way of launching while keeping test framework functionality
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
/****************************************************************************
cawthron
parents:
diff changeset
     2
**
cawthron
parents:
diff changeset
     3
** Trolltech hereby grants a license to use the Qt/Eclipse Integration
cawthron
parents:
diff changeset
     4
** plug-in (the software contained herein), in binary form, solely for the
cawthron
parents:
diff changeset
     5
** purpose of creating code to be used with Trolltech's Qt software.
cawthron
parents:
diff changeset
     6
**
cawthron
parents:
diff changeset
     7
** Qt Designer is licensed under the terms of the GNU General Public
cawthron
parents:
diff changeset
     8
** License versions 2.0 and 3.0 ("GPL License"). Trolltech offers users the
cawthron
parents:
diff changeset
     9
** right to use certain no GPL licensed software under the terms of its GPL
cawthron
parents:
diff changeset
    10
** Exception version 1.2 (http://trolltech.com/products/qt/gplexception).
cawthron
parents:
diff changeset
    11
**
cawthron
parents:
diff changeset
    12
** THIS SOFTWARE IS PROVIDED BY TROLLTECH AND ITS CONTRIBUTORS (IF ANY) "AS
cawthron
parents:
diff changeset
    13
** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
cawthron
parents:
diff changeset
    14
** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
cawthron
parents:
diff changeset
    15
** PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
cawthron
parents:
diff changeset
    16
** OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
cawthron
parents:
diff changeset
    17
** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
cawthron
parents:
diff changeset
    18
** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
cawthron
parents:
diff changeset
    19
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
cawthron
parents:
diff changeset
    20
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
cawthron
parents:
diff changeset
    21
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
cawthron
parents:
diff changeset
    22
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
cawthron
parents:
diff changeset
    23
**
cawthron
parents:
diff changeset
    24
** Since we now have the GPL exception I think that the "special exception
cawthron
parents:
diff changeset
    25
** is no longer needed. The license text proposed above (other than the
cawthron
parents:
diff changeset
    26
** special exception portion of it) is the BSD license and we have added
cawthron
parents:
diff changeset
    27
** the BSD license as a permissible license under the exception.
cawthron
parents:
diff changeset
    28
**
cawthron
parents:
diff changeset
    29
****************************************************************************/
cawthron
parents:
diff changeset
    30
cawthron
parents:
diff changeset
    31
#include <QtCore>
cawthron
parents:
diff changeset
    32
#include <QCoreApplication>
cawthron
parents:
diff changeset
    33
cawthron
parents:
diff changeset
    34
int main(int argc, char *argv[])
cawthron
parents:
diff changeset
    35
{
cawthron
parents:
diff changeset
    36
    QCoreApplication a(argc, argv);
cawthron
parents:
diff changeset
    37
	
cawthron
parents:
diff changeset
    38
    return a.exec();
cawthron
parents:
diff changeset
    39
}