feat: added empty c++ project

This commit is contained in:
2025-07-12 18:19:44 +02:00
parent f82d0145dd
commit ab5752d59f
20 changed files with 214 additions and 414 deletions

View File

@@ -1,6 +0,0 @@
import os
class PathUtil:
def getAbsolutePathTo(notAbsolutPath:str) -> str:
return os.path.abspath("Client/" + notAbsolutPath)

View File

@@ -1,11 +0,0 @@
import random
import string
class StringUtils:
def get_random_string(length) -> str:
# choose from all lowercase letter
letters = string.ascii_lowercase
result_str = ''.join(random.choice(letters) for i in range(length))
print("Random string of length", length, "is:", result_str)
return result_str