init
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
Test.Module.cs
|
||||
|
||||
Copyright © 2008
|
||||
Diversified Technical Systems, Inc.
|
||||
All Rights Reserved
|
||||
*/
|
||||
|
||||
namespace DTS.DAS.Concepts
|
||||
{
|
||||
// *** see Test.cs ***
|
||||
public partial class Test
|
||||
{
|
||||
/// <summary>
|
||||
/// A container for DTS generic module concepts.
|
||||
/// </summary>
|
||||
public sealed partial class Module
|
||||
{
|
||||
/// <summary>
|
||||
/// Class is not intended for instantiation.
|
||||
/// </summary>
|
||||
private Module( ) { }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* DAS.Channel.IInversionAware.cs
|
||||
*
|
||||
* Copyright © 2009
|
||||
* Diversified Technical Systems, Inc.
|
||||
* All Rights Reserved
|
||||
*/
|
||||
|
||||
namespace DTS.DAS.Concepts.DAS.Channel
|
||||
{
|
||||
/// <summary>
|
||||
/// Definition of the concept of inversion awareness.
|
||||
/// </summary>
|
||||
public interface IInversionAware
|
||||
{ ///
|
||||
/// <summary>
|
||||
/// Get/set this object's inversion state <see cref="bool"/>.
|
||||
/// </summary>
|
||||
///
|
||||
bool IsInverted
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
public interface ILinearized
|
||||
{
|
||||
LinearizationFormula LinearizationFormula
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user