File: AnchorFilter.h

package info (click to toggle)
paje.app 1.98-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,428 kB
  • sloc: objc: 24,517; ansic: 6,998; makefile: 134; sh: 42; java: 31
file content (22 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _AnchorFilter_h_
#define _AnchorFilter_h_

/** AnchorFilter
 *  First filter in chain of filters.
 *  Must implement all filter queries and commands.
 *  Implements queries by accessing entities directly.
 *  Implements container and time selections.
 *  Implements other commands by logging "not implemented" message.
 */

#include "../General/PajeFilter.h"

@interface AnchorFilter : PajeFilter
{
    NSSet *selectedContainers;
    NSDate *selectionStartTime;
    NSDate *selectionEndTime;
}
@end

#endif