Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

40 lines
1.4 KiB
C#

//---------------------------------------------------------------------
// <copyright file="ConstraintBase.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System.Data.Common.Utils;
using System.Data.Common.Utils.Boolean;
using System.Data.Mapping.ViewGeneration.Structures;
using System.Text;
using System.Collections.Generic;
using System.Diagnostics;
namespace System.Data.Mapping.ViewGeneration.Validation
{
using WrapperBoolExpr = BoolExpr<LeftCellWrapper>;
using WrapperTreeExpr = TreeExpr<LeftCellWrapper>;
using WrapperAndExpr = AndExpr<LeftCellWrapper>;
using WrapperOrExpr = OrExpr<LeftCellWrapper>;
using WrapperNotExpr = NotExpr<LeftCellWrapper>;
using WrapperTermExpr = TermExpr<LeftCellWrapper>;
using WrapperTrueExpr = TrueExpr<LeftCellWrapper>;
using WrapperFalseExpr = FalseExpr<LeftCellWrapper>;
// A superclass for constraint errors. It also contains useful constraint
// checking methods
internal abstract class ConstraintBase : InternalBase
{
#region Methods
// effects: Returns an error log record with this constraint's information
internal abstract ErrorLog.Record GetErrorRecord();
#endregion
}
}