https://github.com/Kitware/CMake
Raw File
Tip revision: d5401de605af11ad3cd1c6faa64bf319af6b67c6 authored by Brad King on 15 February 2021, 16:48:33 UTC
CMake 3.19.5
Tip revision: d5401de
IncB.cpp
#include "IncB.hpp"

/// @brief Source local QObject
///
class IncBPrivate : public QObject
{
  Q_OBJECT
public:
  IncBPrivate(){};
};

IncB::IncB()
{
  IncBPrivate priv;
}

/// AUTOMOC moc_ include on the last line of the file!
#include "IncB.moc"
#include "moc_IncB.cpp"
back to top