retdec
format.h
Go to the documentation of this file.
1 
7 #ifndef FILEINFO_FILE_PRESENTATION_GETTERS_FORMAT_H
8 #define FILEINFO_FILE_PRESENTATION_GETTERS_FORMAT_H
9 
10 #include <string>
11 #include <vector>
12 
13 namespace retdec {
14 namespace fileinfo {
15 
16 const std::size_t MAX_NAME_LENGTH = 100;
17 
18 std::string abbvSerialization(const std::vector<std::string> &abbv);
19 void shrinkAndReplaceNonprintable(std::string &str, std::size_t maxLength);
20 void addUniqueValues(std::vector<std::string> &currentVal, const std::vector<std::string> &newVal);
21 
22 } // namespace fileinfo
23 } // namespace retdec
24 
25 #endif
void addUniqueValues(std::vector< std::string > &currentVal, const std::vector< std::string > &newVal)
Definition: format.cpp:55
std::string abbvSerialization(const std::vector< std::string > &abbv)
Definition: format.cpp:24
void shrinkAndReplaceNonprintable(std::string &str, std::size_t maxLength)
Definition: format.cpp:40
const std::size_t MAX_NAME_LENGTH
Definition: format.h:16
Definition: archive_wrapper.h:19