11 lines
160 B
C++
11 lines
160 B
C++
#pragma once
|
|
#include "sync.hh"
|
|
|
|
|
|
class T_SyncView : public ebcl::A_PrivateImplementation
|
|
{
|
|
public:
|
|
T_SyncView( ) noexcept;
|
|
bool display( ) noexcept;
|
|
};
|
|
|