16 lines
229 B
C
16 lines
229 B
C
|
#pragma once
|
||
|
|
||
|
#include <set>
|
||
|
|
||
|
#include "CEF/HumanApp.h"
|
||
|
|
||
|
class HumanAppOther
|
||
|
: public HumanApp{
|
||
|
public:
|
||
|
HumanAppOther();
|
||
|
private:
|
||
|
IMPLEMENT_REFCOUNTING(HumanAppOther);
|
||
|
DISALLOW_COPY_AND_ASSIGN(HumanAppOther);
|
||
|
};
|
||
|
|