16 lines
247 B
C
16 lines
247 B
C
|
#ifndef AVATAREXAMPLES_H
|
||
|
#define AVATAREXAMPLES_H
|
||
|
|
||
|
#include "examplelist.h"
|
||
|
|
||
|
class AvatarExamples : public ExampleList
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AvatarExamples(QWidget *parent = 0);
|
||
|
~AvatarExamples();
|
||
|
};
|
||
|
|
||
|
#endif // AVATAREXAMPLES_H
|