Line | |
---|
1 | using HeuristicLab.Collections;
|
---|
2 | using HeuristicLab.Common;
|
---|
3 | using HeuristicLab.Core;
|
---|
4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.HLScript {
|
---|
7 | [Item("VariableStore", "Represents a variable store.")]
|
---|
8 | [StorableClass]
|
---|
9 | public class VariableStore : ObservableDictionary<string, object>, IContent {
|
---|
10 | [StorableConstructor]
|
---|
11 | protected VariableStore(bool deserializing) : base(deserializing) { }
|
---|
12 | public VariableStore() : base() { }
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.