/* This file is part of the sirit project. * Copyright (c) 2018 ReinUsesLisp * This software may be used and distributed according to the terms of the GNU * Lesser General Public License version 2.1 or any later version. */ #pragma once #include "op.h" #include "stream.h" namespace Sirit { template inline void AddEnum(Op* op, T value) { op->Add(static_cast(value)); } } // namespace Sirit