forked from ForNeVeR/xaml-math
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add comments, fix a namespace (ForNeVeR#149)
- Loading branch information
Showing
2 changed files
with
10 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
namespace WpfMath | ||
namespace WpfMath.Parsers | ||
{ | ||
/// <summary>An enumeration that describes how an atom generated by a command should be handled.</summary> | ||
internal enum AtomAppendMode | ||
{ | ||
/// <summary>A new atom will be added to the end of the current formula.</summary> | ||
Add, | ||
|
||
/// <summary>A new atom will replace an entire existing formula.</summary> | ||
/// <remarks>Useful for commands that wrap or somehow process the existing formula.</remarks> | ||
Replace | ||
} | ||
} |
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