Files
CMake/Tests/QtAutogen/AutogenOriginDependsOn/testGenLib.hpp
Kitware Robot ed98209ddc Revise include order using clang-format-6.0
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.
2019-10-01 12:26:36 -04:00

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