This commit is contained in:
2024-06-03 14:41:00 -05:00
parent 9cb9e6e968
commit 58419fd545
10 changed files with 40 additions and 21 deletions

View File

@@ -1,6 +1,19 @@
#ifndef DTL_EXAMPLE_COMMON_H
#define DTL_EXAMPLE_COMMON_H
#include <cassert>
#include <cstdio>
#include <fstream>
#include <sstream>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <time.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif // HAVE_UNISTD_H
#include "dtl/dtl.hpp"
bool isFileExist(std::string &fs);