mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
13 lines
268 B
C++
13 lines
268 B
C++
#pragma once
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
/**
|
|
* Caution: by using that function,
|
|
* it means that every time it's called
|
|
* the file content will be included in the code
|
|
*/
|
|
#define GetFileContent(file_path) #file_path
|