mirror of
https://github.com/QuasarApp/Credits.git
synced 2025-04-26 01:34:38 +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
|