mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-23 15:11:01 -06:00
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.
18 lines
222 B
C++
18 lines
222 B
C++
#ifndef TEST3_HPP
|
|
#define TEST3_HPP
|
|
|
|
#include <QObject>
|
|
|
|
#include "simpleLib.hpp"
|
|
|
|
// This object triggers the AUTOMOC on this file
|
|
class LObject : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_SLOT
|
|
void aSlot(){};
|
|
};
|
|
|
|
#endif
|