mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-06-18 10:55:31 -04:00
19 lines
330 B
C++
19 lines
330 B
C++
#ifndef DATE_H
|
|
#define DATE_H
|
|
|
|
#include <string>
|
|
|
|
/**
|
|
* Get the current time formatted for the top bar.
|
|
* @return std::string containing the time.
|
|
*/
|
|
std::string RetTime();
|
|
|
|
/**
|
|
* Get the current time formatted for filenames.
|
|
* @return std::string containing the time.
|
|
*/
|
|
std::string RetTimeForFilename();
|
|
|
|
#endif // DATE_H
|