Revision 039a89e5 trunk/Pithos.Core/IStatusKeeper.cs

b/trunk/Pithos.Core/IStatusKeeper.cs
30 30
        string BlockHash { get; set; }
31 31
        int BlockSize { get; set; }
32 32
        void ChangeRoots(string oldPath, string newPath);
33
        FileState GetStateByFilePath(string path);
33 34
    }
34 35

  
35 36
    [ContractClassFor(typeof(IStatusKeeper))]
......
163 164
            Contract.Requires(!string.IsNullOrWhiteSpace(newPath));
164 165
            Contract.Requires(Path.IsPathRooted(newPath));            
165 166
        }
167

  
168
        public FileState GetStateByFilePath(string path)
169
        {
170
            Contract.Requires(!String.IsNullOrWhiteSpace(path));
171
            Contract.Requires(Path.IsPathRooted(path));
172

  
173
            return null;
174
        }
166 175
    }
167 176
}

Also available in: Unified diff