-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomponentX.q
26 lines (22 loc) · 943 Bytes
/
componentX.q
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/L/ Copyright (c) 2011-2014 Exxeleron GmbH
/L/
/L/ Licensed under the Apache License, Version 2.0 (the "License");
/L/ you may not use this file except in compliance with the License.
/L/ You may obtain a copy of the License at
/L/
/L/ http://www.apache.org/licenses/LICENSE-2.0
/L/
/L/ Unless required by applicable law or agreed to in writing, software
/L/ distributed under the License is distributed on an "AS IS" BASIS,
/L/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/L/ See the License for the specific language governing permissions and
/L/ limitations under the License.
/A/ DEVnet: componentX author
/V/ 3.0
// dummy component for qtest example
//----------------------------------------------------------------------------//
.componentX.getCols:{[tab]
if[98h<>type tab; '"expecting type 98h"];
:cols tab;
};
//----------------------------------------------------------------------------//