123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef IDENTIFIERUTILS_CPP_WFFUZNET
- #define IDENTIFIERUTILS_CPP_WFFUZNET
- #include "IdentifierDatabase.h"
- #include <vector>
- #include <string>
- #include <boost/filesystem.hpp>
- namespace YouCompleteMe {
- std::string RemoveIdentifierFreeText( std::string text );
- std::vector< std::string > ExtractIdentifiersFromText(
- const std::string &text );
- FiletypeIdentifierMap ExtractIdentifiersFromTagsFile(
- const boost::filesystem::path &path_to_tag_file );
- }
- #endif
|