blob: 0d401a3add74a234b85a95e27fd4b06f94012910 (
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
|
#pragma once
#include "global_macros.h"
#include <folly/String.h>
#include <folly/Function.h>
namespace cru
{
enum class FlowControl
{
Continue,
Break
};
using String = folly::basic_fbstring<wchar_t>;
template<typename FunctionType>
using Function = folly::Function<FunctionType>;
template<typename... Args>
using Action = Function<void(Args...)>;
template<typename... Args>
using FlowControlAction = Function<FlowControl(Args...)>;
class Object
{
public:
Object() = default;
Object(const Object&) = default;
Object& operator = (const Object&) = default;
Object(Object&&) = default;
Object& operator = (Object&&) = default;
virtual ~Object() = default;
};
struct Interface
{
virtual ~Interface() = default;
};
}
|