Last change
on this file since 3002 was
2718,
checked in by epitzer, 15 years ago
|
reset ZipEntry data to make binary objects comparable (#548)
|
File size:
706 bytes
|
Line | |
---|
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 HeuristicLab.Persistence.Core.Tokens;
|
---|
10 |
|
---|
11 | namespace HeuristicLab.Persistence.Default.Xml {
|
---|
12 |
|
---|
13 | 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.