-
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.
Mathcad generator and improved settings interface
- Loading branch information
Showing
30 changed files
with
657 additions
and
135 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#ifndef __FORWARDDECLARATIONS_H__ | ||
#define __FORWARDDECLARATIONS_H__ | ||
|
||
namespace mcon | ||
{ | ||
class Token; | ||
enum class TokenType; | ||
class CharacterSet; | ||
class CharacterStream; | ||
class Lexer; | ||
class Settings; | ||
enum class Setting; | ||
enum class DecimalSeparator; | ||
enum class InputLanguage; | ||
enum class OutputLanguage; | ||
enum class OutputMode; | ||
class Node; | ||
enum class NodeType; | ||
class ParsingTree; | ||
class Parser; | ||
class Generator; | ||
class MathcadParser; | ||
class MathcadGenerator; | ||
class LatexParser; | ||
class LatexGenerator; | ||
} | ||
|
||
#endif // __FORWARDDECLARATIONS_H__ |
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
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
Oops, something went wrong.