upload all files

This commit is contained in:
2026-01-07 21:26:28 +08:00
parent 1d35a422ec
commit 6d7544e0a3
17 changed files with 2987 additions and 0 deletions

19
Modules/methods.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef METHODS_H
#define METHODS_H
#include <iostream>
#include "Modules/inicpp.hpp"
using std::string;
class methods
{
public:
methods();
};
int getUnixTimestamp();
string getTextMiddle(string source, string left, string right); // Get a middle text from a string
string getKeyText(string iniFilePath, string mainLevel, string subLevel); // Get key value from INI file
void setKeyText(string iniFilePath, string mainLevel, string subLevel, string value); // Set key value to INI file
#endif // METHODS_H