// Copyright (c) 2010 Martin Knafve / hMailServer.com. // http://www.hmailserver.com #pragma once #include "DiagnosticResult.h" namespace HM { class TestBackupDirectory { public: TestBackupDirectory(); virtual ~TestBackupDirectory(); DiagnosticResult PerformTest(); private: }; }