Rev | Line | |
---|
[1613] | 1 | using System.Collections.Generic;
|
---|
| 2 | using System;
|
---|
| 3 | using System.Text;
|
---|
| 4 | using HeuristicLab.Persistence.Interfaces;
|
---|
| 5 | using HeuristicLab.Persistence.Core;
|
---|
| 6 | using System.IO;
|
---|
| 7 | using ICSharpCode.SharpZipLib.Zip;
|
---|
| 8 | using HeuristicLab.Tracing;
|
---|
| 9 | using log4net;
|
---|
| 10 | using HeuristicLab.Persistence.Core.Tokens;
|
---|
| 11 |
|
---|
| 12 | namespace HeuristicLab.Persistence.Default.Xml {
|
---|
| 13 |
|
---|
| 14 | struct XmlStringConstants {
|
---|
[1712] | 15 | public const string PRIMITIVE = "PRIMITIVE";
|
---|
[1613] | 16 | public const string COMPOSITE = "COMPOSITE";
|
---|
| 17 | public const string REFERENCE = "REFERENCE";
|
---|
| 18 | public const string NULL = "NULL";
|
---|
| 19 | public const string TYPECACHE = "TYPECACHE";
|
---|
| 20 | public const string TYPE = "TYPE";
|
---|
| 21 | public const string METAINFO = "METAINFO";
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.