refactor: rename __PIP_TYPENAME_DECLARE to PIP_REGISTER_TYPENAME, add PIP_DECLARE_TYPENAME macro

- Rename __PIP_TYPENAME_DECLARE to PIP_REGISTER_TYPENAME across all headers
- Add PIP_DECLARE_TYPENAME(name) macro for in-class type name declaration
- Replace all static const char * __pip_typename__() member functions with PIP_DECLARE_TYPENAME
This commit is contained in:
2026-08-24 19:31:41 +03:00
parent c1b8e97311
commit 2605446573
82 changed files with 181 additions and 169 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ struct Endpoint: public PIHTTP::ServerEndpoint {
PIHTTPServer::RequestFunction function;
};
__PIP_TYPENAME_DECLARE(Endpoint)
PIP_REGISTER_TYPENAME(Endpoint)
PRIVATE_DEFINITION_START(PIHTTPServer)