4
0
mirror of https://github.com/QuasarApp/Credits.git synced 2025-05-05 05:59:41 +00:00

13 lines
155 B
C
Raw Normal View History

2021-03-18 17:39:15 +03:00
#ifndef TEST_H
#define TEST_H
class Test
{
public:
Test() = default;
virtual ~Test() = default;
virtual void test() = 0;
};
#endif // TEST_H