z3-z3-4.13.0.src.api.dotnet.ReExpr.cs Maven / Gradle / Ivy
The newest version!
/*++
Copyright () 2016 Microsoft Corporation
Module Name:
ReExpr.cs
Abstract:
Z3 Managed API: Regular Expressions
Author:
Christoph Wintersteiger (cwinter) 2012-11-23
Notes:
--*/
using System.Diagnostics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Microsoft.Z3
{
///
/// Regular expression expressions
///
public class ReExpr : Expr
{
#region Internal
/// Constructor for ReExpr
internal ReExpr(Context ctx, IntPtr obj)
: base(ctx, obj)
{
Debug.Assert(ctx != null);
}
#endregion
}
}