13 lines
167 B
C++
13 lines
167 B
C++
#ifndef PLAINOBJECT_H
|
|
#define PLAINOBJECT_H
|
|
|
|
// Class that is plain C++, no Qt involved.
|
|
class PlainObject
|
|
{
|
|
public:
|
|
PlainObject();
|
|
void doSomething();
|
|
};
|
|
|
|
#endif
|