mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
13 lines
167 B
C++
13 lines
167 B
C++
#pragma once
|
|
|
|
#include "../Interface/Thread.h"
|
|
|
|
class ImdiskSrv : public IThread
|
|
{
|
|
public:
|
|
ImdiskSrv();
|
|
|
|
static bool installed();
|
|
|
|
void operator()();
|
|
}; |