-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from dotnetprojects/feature/varTabExport
work on var tab export
- Loading branch information
Showing
7 changed files
with
82 additions
and
20 deletions.
There are no files selected for viewing
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
9 changes: 9 additions & 0 deletions
9
LibNoDaveConnectionLibrary/DataTypes/Blocks/Step7V11/ITIAConstant.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace DotNetSiemensPLCToolBoxLibrary.DataTypes.Blocks.Step7V11 | ||
{ | ||
public interface ITIAConstant | ||
{ | ||
string Name { get; set; } | ||
|
||
object Value { get; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
LibNoDaveConnectionLibrary/DataTypes/Blocks/Step7V11/ITIATag.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace DotNetSiemensPLCToolBoxLibrary.DataTypes.Blocks.Step7V11 | ||
{ | ||
public interface ITIATag | ||
{ | ||
string Name { get; set; } | ||
string Address { get; set; } | ||
string DataTypeName { get; set; } | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
LibNoDaveConnectionLibrary/DataTypes/Blocks/Step7V11/ITIAVarTabFolder.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using DotNetSiemensPLCToolBoxLibrary.DataTypes.Projectfolders; | ||
using System.Collections.Generic; | ||
|
||
namespace DotNetSiemensPLCToolBoxLibrary.DataTypes.Blocks.Step7V11 | ||
{ | ||
public interface ITIAVarTabFolder: IProjectFolder | ||
{ | ||
List<ITIAVarTab> TagTables { get; } | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
LibNoDaveConnectionLibrary/DataTypes/Blocks/Step7V11/ITiaVarTab.cs
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace DotNetSiemensPLCToolBoxLibrary.DataTypes.Blocks.Step7V11 | ||
{ | ||
public interface ITIAVarTab | ||
{ | ||
string Name { get; set; } | ||
|
||
List<ITIAConstant> Constants { get; } | ||
|
||
List<ITIATag> Tags { get; } | ||
|
||
string Export(); | ||
} | ||
} |
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
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