mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-30 11:10:06 -05:00
ed98209ddc
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
20 lines
364 B
C++
20 lines
364 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef YAF_P_H
|
|
#define YAF_P_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <QObject>
|
|
|
|
class YafP : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
YafP() {}
|
|
public slots:
|
|
void doYafP() { printf("I am yet another file !\n"); }
|
|
};
|
|
|
|
#endif
|