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