16 lines
428 B
C++
16 lines
428 B
C++
#pragma once
|
|
#include "../base/provider_interface.hpp"
|
|
|
|
namespace lsp::providers::text_document
|
|
{
|
|
class DidClose : public INotificationProvider
|
|
{
|
|
public:
|
|
DidClose() = default;
|
|
|
|
std::string GetMethod() const override;
|
|
std::string GetProviderName() const override;
|
|
void HandleNotification(const protocol::NotificationMessage& notification, ExecutionContext& context) override;
|
|
};
|
|
}
|