mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 09:41:06 +00:00
* add IDL parser & generator (wip) * fix fixtures issues affecting tests * fix fixtures issues affecting tests
9 lines
110 B
C++
9 lines
110 B
C++
#pragma once
|
|
|
|
class EmptyClassImpl {
|
|
public:
|
|
EmptyClassImpl() = default;
|
|
private:
|
|
int m_value = 0;
|
|
};
|