plainobject.h 167 B

123456789101112
  1. #ifndef PLAINOBJECT_H
  2. #define PLAINOBJECT_H
  3. // Class that is plain C++, no Qt involved.
  4. class PlainObject
  5. {
  6. public:
  7. PlainObject();
  8. void doSomething();
  9. };
  10. #endif