diff options
author | Kristopher Ives <kris@leetbook2.(none)> | 2009-10-25 00:05:37 -0700 |
---|---|---|
committer | Kristopher Ives <kris@leetbook2.(none)> | 2009-10-25 00:05:37 -0700 |
commit | db735c3a5a6db8b5eeb6816983c466c26228b7ee (patch) | |
tree | e88943f522a31a0221d4d5fdb3da503f48cfcc0c /include | |
parent | b6a417d2bc02f23897cebfe83cd7d11defa2c726 (diff) | |
download | zcomp-db735c3a5a6db8b5eeb6816983c466c26228b7ee.tar.gz zcomp-db735c3a5a6db8b5eeb6816983c466c26228b7ee.tar.bz2 |
Added some preliminary doc for how CompMatch works.
Diffstat (limited to 'include')
-rw-r--r-- | include/core/match.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/core/match.h b/include/core/match.h index de26b5a..ba9c7f2 100644 --- a/include/core/match.h +++ b/include/core/match.h @@ -34,9 +34,16 @@ class PrivateMatch; class CompWindow; class CompDisplay; +/** + * Matches windows based on properties similar to regular expressions. + * TODO how do you get the list of windows that match it? + */ class CompMatch { public: - + + /** + * TODO + */ class Expression { public: virtual ~Expression () {}; |