mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03: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.
41 lines
707 B
C++
41 lines
707 B
C++
#include "MixedSkipped.hpp"
|
|
|
|
#include "MixedCustom.hpp"
|
|
|
|
class MixedSkippedLocal : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MixedSkippedLocal();
|
|
~MixedSkippedLocal();
|
|
};
|
|
|
|
MixedSkippedLocal::MixedSkippedLocal()
|
|
{
|
|
}
|
|
|
|
MixedSkippedLocal::~MixedSkippedLocal()
|
|
{
|
|
}
|
|
|
|
MixedSkipped::MixedSkipped()
|
|
{
|
|
MixedSkippedLocal local;
|
|
MixedCustom externCutom;
|
|
// Call moc named function
|
|
moc_MixedCustom(externCutom);
|
|
}
|
|
|
|
MixedSkipped::~MixedSkipped()
|
|
{
|
|
}
|
|
|
|
// Include AUTOMOC generated moc files
|
|
#include "MixedSkipped.moc"
|
|
#include "moc_MixedSkipped.cpp"
|
|
|
|
// Include externally generated moc_ named file that is not a moc file
|
|
// and for which the relevant header is SKIP_AUTOMOC enabled
|
|
#include "moc_MixedCustom.cpp"
|