https://github.com/Kitware/CMake
Raw File
Tip revision: 9703b32c1c75b0b343bb5043030a08a1b1345a20 authored by Brad King on 02 June 2016, 18:56:09 UTC
Merge branch 'FindHDF5-fix-already-found' into release
Tip revision: 9703b32
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