#pragma once #include #include namespace TCPSocket { bool startWith(const std::string& str, const std::string& start); bool endsWith(const std::string& str, const std::string& end); bool contains(const std::string& str, const std::string& sub); std::vector split(const std::string& str, const std::string& delimiter); }