Files
clice/include/Basic/Workspace.h
2025-01-13 23:14:10 +08:00

19 lines
360 B
C++

#pragma once
#include "Basic.h"
namespace clice::proto {
struct WorkspaceFolder {
/// The associated URI for this workspace folder.
URI uri;
/// The name of the workspace folder. Used to refer to this workspace folder
/// in the user interface.
std::string name;
};
struct DidChangeWatchedFilesParams {};
} // namespace clice::proto