Skip to content

Commit

Permalink
Readded the missing files (#1)
Browse files Browse the repository at this point in the history
Added the missing Julia files
  • Loading branch information
JKRT authored and sjoelund committed Jun 3, 2019
1 parent 64a019f commit f7028d4
Show file tree
Hide file tree
Showing 9 changed files with 3,081 additions and 0 deletions.
54 changes: 54 additions & 0 deletions OMCompiler/Compiler/Script/MMToJuliaUtil.mo
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* This file is part of OpenModelica.
*
* Copyright (c) 1998-2014, Open Source Modelica Consortium (OSMC),
* c/o Linköpings universitet, Department of Computer and Information Science,
* SE-58183 Linköping, Sweden.
*
* All rights reserved.
*
* THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 LICENSE OR
* THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.2.
* ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
* RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3,
* ACCORDING TO RECIPIENTS CHOICE.
*
* The OpenModelica software and the Open Source Modelica
* Consortium (OSMC) Public License (OSMC-PL) are obtained
* from OSMC, either from the above address,
* from the URLs: http://www.ida.liu.se/projects/OpenModelica or
* http://www.openmodelica.org, and in the OpenModelica distribution.
* GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
*
* This program is distributed WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
* IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
*
* See the full OSMC Public License conditions for more details.
*
*/

encapsulated package MMToJuliaUtil

uniontype Context
record FUNCTION
end FUNCTION;
record PACKAGE
end PACKAGE;
record UNIONTYPE
String name;
end UNIONTYPE;
end Context;
constant Context packageContext = PACKAGE();
constant Context functionContext = FUNCTION();

function makeUniontypeContext
input String name;
output Context context;
algorithm
context := UNIONTYPE(name);
end makeUniontypeContext;

annotation(__OpenModelica_Interface="backend");
end MMToJuliaUtil;

0 comments on commit f7028d4

Please sign in to comment.