19 lines
455 B
C++
19 lines
455 B
C++
#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
|