blob: 240f7684a55c9094cf63bcac20d56481261f6f0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#pragma once
#include "common.hpp"
#include "ref.hpp"
#include <string>
#include <sstream>
namespace intellect {
namespace level1 {
ref a(ref group);
ref an(ref group);
ref a(ref group, ref name);
ref an(ref group, ref name);
bool isanonymous(ref topic);
ref movetoname(ref anonymous, ref name);
namespace internal {
template <typename... T>
void init_ref_names(std::string names, T &... refrefs)
{
std::stringstream ss(names);
ref* refptrs[] = {&refrefs...};
for (std::size_t i = 0; i < sizeof...(refrefs); ++ i) {
std::string name;
ss >> name;
if (name[name.size() - 1] == ',') {
name = name.substr(0, name.size() - 1);
}
refptrs[i]->ptr() = ref(name).ptr();
}
}
}
#define decl(r) \
ref r(#r);
#define decls(...) \
ref __VA_ARGS__; \
intellect::level1::internal::init_ref_names(#__VA_ARGS__, __VA_ARGS__)
}
}
|