[ox/fs] Change Claw type IDs to domain based namespaces

This commit is contained in:
Gary Talent 2020-06-15 23:16:34 -05:00
parent f8fb458e32
commit 112c2c4212

View File

@ -26,11 +26,11 @@ class FileAddress {
friend ox::Error model(T*, FileAddress*);
public:
static constexpr auto TypeName = "ox::FileAddress";
static constexpr auto TypeName = "net.drinkingtea.ox.FileAddress";
static constexpr auto Fields = 2;
union Data {
static constexpr auto TypeName = "ox::FileAddress::Data";
static constexpr auto TypeName = "net.drinkingtea.ox.FileAddress.Data";
static constexpr auto Fields = 3;
char *path;
const char *constPath;