mirror of
https://github.com/textmate/textmate.git
synced 2026-01-22 13:17:55 -05:00
19 lines
487 B
C++
19 lines
487 B
C++
#ifndef SCOPE_PARSE_H_MMVW7L5U
|
|
#define SCOPE_PARSE_H_MMVW7L5U
|
|
|
|
#include "types.h"
|
|
|
|
namespace scope
|
|
{
|
|
namespace parse
|
|
{
|
|
char const* scope (char const* first, char const* last, scope::types::scope_t& scope);
|
|
char const* path (char const* first, char const* last, scope::types::path_t& path);
|
|
char const* selector (char const* first, char const* last, scope::types::selector_t& selector);
|
|
|
|
} /* parse */
|
|
|
|
} /* scope */
|
|
|
|
#endif /* end of include guard: SCOPE_PARSE_H_MMVW7L5U */
|