CBuild
C++ build system with scripts written in c++
Loading...
Searching...
No Matches
hash.hpp
Go to the documentation of this file.
1
21#ifndef __HASH_HPP__
22#define __HASH_HPP__
23// C++ libraries
24#include "string"
25#include "vector"
26// Code
27namespace CBuild {
35std::vector<std::string> get_files(std::vector<std::string> files, std::vector<std::string> objects,
36 std::string toolchain_id);
40void print_files();
41} // namespace CBuild
42#endif // __HASH_HPP__
Filebuffer for CBuild ecosystem.
Definition Build.hpp:34
std::vector< std::string > get_files(std::vector< std::string > files, std::vector< std::string > objects, std::string toolchain_id)
Get changed files.
Definition hash.cpp:395
void print_files()
Print temporary file array.
Definition hash.cpp:369