32 lines
781 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2004-2011 Kitware, Inc.
Copyright 2011 Alexander Neundorf (neundorf@kde.org)
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
#ifndef FOO_H
#define FOO_H
#include <QObject>
2013-11-07 00:51:16 +02:00
class Foo
#ifdef FOO
: public QObject
#endif
2012-02-18 12:40:36 +02:00
{
Q_OBJECT
public:
Foo();
public slots:
void doFoo();
};
#endif