Cheetah Software
1.0
|
#include <Configuration.h>
#include <cppTypes.h>
#include <stdio.h>
#include <sys/stat.h>
#include <algorithm>
#include <fstream>
#include <iostream>
#include <list>
#include <string>
Go to the source code of this file.
Functions | |
void | cleaning_file (const std::string &folder_name, const std::string &file_name, std::string &full_ret_file) |
void | create_folder (const std::string &folder_name) |
template<typename T > | |
void | saveVector (const DVec< T > &_vec, const std::string &folder_name, const std::string &file_name) |
template<typename T > | |
void | saveVector (const Vec3< T > &_vec, const std::string &folder_name, const std::string &file_name) |
template<typename T > | |
void | saveVector (const std::vector< T > &_vec, const std::string &folder_name, const std::string &file_name) |
template<typename T > | |
void | saveVector (T *_vec, const std::string &folder_name, const std::string &file_name, int size) |
template<typename T > | |
void | saveValue (T _value, const std::string &folder_name, const std::string &file_name) |
Variables | |
static std::list< std::string > | gs_fileName_string |
void cleaning_file | ( | const std::string & | folder_name, |
const std::string & | file_name, | ||
std::string & | full_ret_file | ||
) |
Definition at line 3 of file save_file.cpp.
References gs_fileName_string.
void create_folder | ( | const std::string & | folder_name | ) |
void saveValue | ( | T | _value, |
const std::string & | folder_name, | ||
const std::string & | file_name | ||
) |
Definition at line 69 of file save_file.h.
References cleaning_file().
void saveVector | ( | const DVec< T > & | _vec, |
const std::string & | folder_name, | ||
const std::string & | file_name | ||
) |
Definition at line 22 of file save_file.h.
References cleaning_file().
void saveVector | ( | const Vec3< T > & | _vec, |
const std::string & | folder_name, | ||
const std::string & | file_name | ||
) |
Definition at line 36 of file save_file.h.
References saveVector().
void saveVector | ( | const std::vector< T > & | _vec, |
const std::string & | folder_name, | ||
const std::string & | file_name | ||
) |
Definition at line 42 of file save_file.h.
References cleaning_file().
void saveVector | ( | T * | _vec, |
const std::string & | folder_name, | ||
const std::string & | file_name, | ||
int | size | ||
) |
Definition at line 56 of file save_file.h.
References cleaning_file().
|
static |
Definition at line 14 of file save_file.h.