mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
19 lines
449 B
C++
19 lines
449 B
C++
#ifndef SOURCERANGE_H_
|
|
#define SOURCERANGE_H_
|
|
#include <clang-c/Index.h>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
namespace clang {
|
|
class SourceRange {
|
|
public:
|
|
/*
|
|
SourceRange(const CXSourceRange& cx_range) : cx_range(cx_range) {}
|
|
SourceRange(SourceLocation &start, SourceLocation &end);
|
|
std::pair<clang::Offset, clang::Offset> get_offsets();
|
|
CXSourceRange cx_range;
|
|
*/
|
|
};
|
|
} // namespace clang
|
|
#endif // SOURCERANGE_H_
|