2012-03-01 12:52:12 +00:00
|
|
|
|
#region CPL License
|
|
|
|
|
/*
|
|
|
|
|
Nuclex Framework
|
2013-04-25 13:11:59 +00:00
|
|
|
|
Copyright (C) 2002-2013 Nuclex Development Labs
|
2012-03-01 12:52:12 +00:00
|
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the IBM Common Public License as
|
|
|
|
|
published by the IBM Corporation; either version 1.0 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
IBM Common Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the IBM Common Public
|
|
|
|
|
License along with this library
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2012-03-01 14:05:11 +00:00
|
|
|
|
#if !NO_SPECIALIZED_COLLECTIONS
|
2012-03-01 12:52:12 +00:00
|
|
|
|
using System.Collections.Specialized;
|
2012-03-01 14:05:11 +00:00
|
|
|
|
#endif
|
2012-03-01 12:52:12 +00:00
|
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Collections {
|
|
|
|
|
|
|
|
|
|
/// <summary>Contains fixed constants used by some collections</summary>
|
|
|
|
|
public static class Constants {
|
|
|
|
|
|
2012-03-01 14:05:11 +00:00
|
|
|
|
#if !NO_SPECIALIZED_COLLECTIONS
|
2012-03-01 12:52:12 +00:00
|
|
|
|
/// <summary>Fixed event args used to notify that the collection has reset</summary>
|
|
|
|
|
public static readonly NotifyCollectionChangedEventArgs NotifyCollectionResetEventArgs =
|
|
|
|
|
new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset);
|
2012-03-01 14:05:11 +00:00
|
|
|
|
#endif
|
2012-03-01 12:52:12 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Collections
|