Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
UnaryFunction.h
Go to the documentation of this file.
1/*
2* This file is part of Project SkyFire https://www.projectskyfire.org.
3* See LICENSE.md file for Copyright information
4*/
5
6#ifndef SKYFIRE_UNARY_FUNCTION_H
7#define SKYFIRE_UNARY_FUNCTION_H
8
9template<class ArgumentType, class ResultType>
11{
12 typedef ArgumentType argument_type;
13 typedef ResultType result_type;
14};
15
16#define SF_UNARY_FUNCTION unary_function
17
18#endif
ArgumentType argument_type
ResultType result_type