Files
Ents-mirror/Ents/Classes/utils/CompileConditionalBlock/CompileConditionalBlock.swift
2019-03-15 09:38:33 +02:00

15 lines
336 B
Swift

//
// CompileConditionalBlock.swift
// Ents
//
// Created by Georges Boumis on 26/08/2016.
// Copyright © 2016-2019 Georges Boumis.
// Licensed under MIT (https://github.com/averello/Ents/blob/master/LICENSE)
//
import Foundation
public protocol CompileConditionalBlock {
func perform(_ block: () throws -> Void) rethrows
}