~bas-dotbas/do/win32-next

« back to all changes in this revision

Viewing changes to Do.Addins/src/Do.Universe/IItemSource.cs

  • Committer: djsiegel at gmail
  • Date: 2007-10-13 21:55:22 UTC
  • Revision ID: djsiegel@gmail.com-20071013215522-n0vjgog0tyjfnpno
Restructured plugins library.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// IItemSource.cs created with MonoDevelop
 
2
// User: dave at 12:54 PM 8/29/2007
 
3
//
 
4
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
 
5
//
 
6
 
 
7
using System;
 
8
using System.Collections.Generic;
 
9
 
 
10
namespace Do.Universe
 
11
{
 
12
        
 
13
        public interface IItemSource : IObject
 
14
        {
 
15
                bool UpdateItems ();
 
16
                ICollection<IItem> Items { get; }
 
17
                // ICollection<IItem> ChildrenOfItem (IItem item);
 
18
        }
 
19
}