Skip to content

Commit 7725f45

Browse files
committed
[matlab] Add Filter enum class
1 parent 8280ede commit 7725f45

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

+nix/Filter.m

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
classdef Filter < uint8
2+
%FILTER available nix custom filters
3+
4+
enumeration
5+
accept_all (0); % requires an empty value
6+
id (1);
7+
ids (2); % requires a cell array
8+
type (3);
9+
name (4);
10+
metadata (5);
11+
source (6);
12+
end
13+
14+
end

0 commit comments

Comments
 (0)