mirror of
https://github.com/QuasarApp/Credits.git
synced 2025-04-28 02:34:42 +00:00
13 lines
155 B
C++
13 lines
155 B
C++
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
class Test
|
|
{
|
|
public:
|
|
Test() = default;
|
|
virtual ~Test() = default;
|
|
virtual void test() = 0;
|
|
};
|
|
|
|
#endif // TEST_H
|