Revision 6a1a6449406f98bfc3fd5002bc84e4dfd401c704 authored by Brad King on 19 February 2014, 13:34:27 UTC, committed by CMake Topic Stage on 19 February 2014, 13:34:27 UTC
e346c47a FindOpenSSL: Prefer OPENSSL_ROOT_DIR first (#14764)

2 parent s 59df48a + e346c47
Raw File
xyz.h
/*============================================================================
  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 XYZ_H
#define XYZ_H

#include <QObject>

class Xyz : public QObject
{
  Q_OBJECT
  public:
    Xyz();
  public slots:
    void doXyz();
};

#endif
back to top