Revision 6a1a6449406f98bfc3fd5002bc84e4dfd401c704 authored by Brad King on 19 February 2014, 13:34:27 UTC, committed by CMake Topic Stage on 19 February 2014, 13:34:27 UTC
e346c47a FindOpenSSL: Prefer OPENSSL_ROOT_DIR first (#14764)

2 parent s 59df48a + e346c47
Raw File
private_slot.cpp

#include "private_slot.h"

class PrivateSlotPrivate
{
public:

  void privateSlot()
  {

  }
};

PrivateSlot::PrivateSlot(QObject *parent)
  : QObject(parent),
  d(new PrivateSlotPrivate)
{

}

#include "private_slot.moc"
back to top