WebFramework
v3.0.12
Web framework for C++.
Loading...
Searching...
No Matches
WebFrameworkConcepts.h
1
#pragma once
2
3
#include <type_traits>
4
#include <string>
5
6
namespace
framework
7
{
8
namespace
utility
9
{
10
namespace
concepts
11
{
12
template
<
typename
T>
13
concept
RouteParameterType
= std::same_as<T, std::string> || std::same_as<T, int64_t> || std::same_as<T, double>;
14
}
15
}
16
}
framework::utility::concepts::RouteParameterType
Definition
WebFrameworkConcepts.h:13
framework
Definition
StandardWebFrameworkDynamicPagesFunctions.cpp:8
WebFramework
src
Utility
WebFrameworkConcepts.h
Generated by
1.12.0