13 lines
192 B
C++
13 lines
192 B
C++
#pragma once
|
|
#ifndef REAL_BUILD
|
|
# include "externals.hh"
|
|
#endif
|
|
|
|
|
|
class T_SyncView : public ebcl::A_PrivateImplementation
|
|
{
|
|
public:
|
|
T_SyncView( ) noexcept;
|
|
bool display( ) noexcept;
|
|
};
|
|
|