本文整理汇总了C++中formattables::locator类的典型用法代码示例。如果您正苦于以下问题:C++ locator类的具体用法?C++ locator怎么用?C++ locator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了locator类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
boost::filesystem::path enum_implementation_formatter::full_path(
const formattables::locator& l, const coding::meta_model::name& n) const {
return l.make_full_path_for_tests_cpp_implementation(n, static_id());
}
示例2:
boost::filesystem::path enum_header_formatter::full_path(
const formattables::locator& l, const coding::meta_model::name& n) const {
return l.make_full_path_for_cpp_header(n, static_id());
}
示例3:
boost::filesystem::path enum_header_formatter::full_path(
const formattables::locator& l, const yarn::name& n) const {
return l.make_full_path_for_cpp_header(n, static_artefact());
}
示例4:
boost::filesystem::path primitive_header_formatter::inclusion_path(
const formattables::locator& l, const coding::meta_model::name& n) const {
return l.make_inclusion_path_for_cpp_header(n, static_id());
}
示例5: full_path
boost::filesystem::path visual_studio_project_formatter::
full_path(const formattables::locator& l, const coding::meta_model::name& n) const {
return l.make_full_path_for_project(n, static_id());
}
示例6:
boost::filesystem::path cmakelists_formatter::full_path(
const formattables::locator& l, const coding::meta_model::name& n) const {
return l.make_full_path_for_tests_cmakelists(n, static_id());
}