added a bigger real-life demo

This commit is contained in:
Sascha Kühl
2025-06-25 15:57:02 +02:00
parent e72733d37e
commit 4dcbf009da
15 changed files with 500 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef INTERNAL_USER_DIRECTORY_HPP
#define INTERNAL_USER_DIRECTORY_HPP
#include "UserDirectory.hpp"
#include "matador/utils/base_class.hpp"
namespace work::models::admin {
struct InternalUserDirectory : UserDirectory {
template<typename Operator>
void process( Operator& op ) {
namespace field = matador::access;
field::process( op, *matador::base_class<UserDirectory>( this ) );
}
};
}
#endif //INTERNALUSERDIRECTORY_HPP