#pragma once #include namespace JC { int setColor(std::vector colors); int backupToJSON(nlohmann::json &profiles, const char* path); std::vector>> getProfiles(const char* path); void changeJCColor(std::vector values); nlohmann::json backupProfile(); void backupJCColor(const char* path); } namespace PC { int setColor(std::vector colors); int backupToJSON(nlohmann::json &profiles, const char* path); std::vector>> getProfiles(const char* path); void changePCColor(std::vector values); nlohmann::json backupProfile(); void backupPCColor(const char* path); } namespace ColorSwapper { int hexToBGR(std::string hex); std::string BGRToHex(int v); bool isHexaAnd3Bytes(std::string str); }