repo.or.cz
/
beagle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix a potential crash in html parsing code. How come it was never reported ?
[beagle.git]
/
bludgeon
/
IHammer.cs
blob
0a6f10af0e65d36b03a0adc943da164150f073b8
1
using
System
;
2
3
namespace
Bludgeon
{
4
5
public interface
IHammer
{
6
7
// Return true if we actually did something,
8
// false if the hammering ended up being a no-op for some reason.
9
bool
HammerOnce
(
DirectoryObject dir
,
EventTracker tracker
);
10
11
}
12
13
}