Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Default/Xml/XmlStringConstants.cs @ 3293

Last change on this file since 3293 was 3036, checked in by epitzer, 14 years ago

make most serializers internal and complete API documentation (#548)

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