dyld-832.7.1.tar.gz
[apple/dyld.git] / testing / kernel-cache-tests / auxkc-pageablekc-vtable-patching-namespaces / foo2.h
1
2 #include "foo1.h"
3
4 namespace X {
5
6 class Foo2 : public Foo1
7 {
8 OSDeclareDefaultStructors( Foo2 )
9
10 public:
11 virtual int foo() override;
12
13 virtual int foo1Used0() override;
14 };
15
16 } // namespace X