C_CPP/11_PUTT/Test.h

26 lines
229 B
C++

//
// Created by JThei on 17.06.2018.
//
#ifndef TEST_BUILD_TEST_H
#define TEST_BUILD_TEST_H
class Base {
};
class Derived : Base {
};
void foo(Base* base) {
}
void bar(Derived* derived) {
}
#endif //TEST_BUILD_TEST_H