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
gadget.h

#ifndef GADGET_H
#define GADGET_H

#include <QObject>

class Gadget
{
  Q_GADGET
  Q_ENUMS(Type)
public:
  enum Type {
    Type0,
    Type1
  };
};

#endif
back to top