mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 21:23:12 +02:00
7 lines
175 B
C++
7 lines
175 B
C++
#ifndef MISC_HPP
|
|
#define MISC_HPP
|
|
#include <iostream>
|
|
|
|
void print(const std::string s);
|
|
std::string fileBufferToString(const std::string filePath, std::ifstream &file);
|
|
#endif |