pascalabcnet/Compiler/PCU/PCUFileFormatVersion.cs

12 lines
455 B
C#
Raw Permalink Normal View History

2015-06-01 22:15:17 +03:00
// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
//ѕри внесении изменений в структуру PCU файла версию увеличить на 1
2015-05-14 22:35:07 +03:00
namespace PascalABCCompiler.PCU
{
public static class PCUFileFormatVersion
{
2018-09-22 18:49:47 +03:00
public static System.Int16 Version = 109;
2015-05-14 22:35:07 +03:00
}
}