Created
November 11, 2011 05:30
-
-
Save takeshik/1357275 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// -*- mode: csharp; encoding: utf-8; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*- | |
// vim:set ft=cs fenc=utf-8 ts=4 sw=4 sts=4 et: | |
// $Id: 919a6613587c54febc8e1cd4b01afd21fd5dbc78 $ | |
/* YACQ | |
* Yet Another Compilable Query Language, based on Expression Trees API | |
* Copyright © 2011 Takeshi KIRIYA (aka takeshik) <[email protected]> | |
* All rights reserved. | |
* | |
* This file is part of YACQ. | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in | |
* all copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
* THE SOFTWARE. | |
*/ | |
namespace XSpect.Yacq | |
{ | |
/// <summary> | |
/// Specify the reference for <see cref="SymbolTable"/>. | |
/// </summary> | |
public class SymbolTableReference | |
{ | |
/// <summary> | |
/// Gets the referring <see cref="SymbolTable"/>. | |
/// </summary> | |
/// <value>The referring <see cref="SymbolTable"/>.</value> | |
public SymbolTable Value | |
{ | |
get; | |
private set; | |
} | |
/// <summary> | |
/// Initializes a new instance of <see cref="SymbolTableReference"/> class. | |
/// </summary> | |
/// <param name="value">The referring <see cref="SymbolTable"/>.</param> | |
public SymbolTableReference(SymbolTable value) | |
{ | |
this.Value = value; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment