forked from ppdewolf/libmuargus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVarList.h
31 lines (27 loc) · 995 Bytes
/
VarList.h
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
27
28
29
30
31
/*
* Argus Open Source
* Software to apply Statistical Disclosure Control techniques
*
* Copyright 2014 Statistics Netherlands
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the European Union Public Licence
* (EUPL) version 1.1, as published by the European Commission.
*
* You can find the text of the EUPL v1.1 on
* https://joinup.ec.europa.eu/software/page/eupl/licence-eupl
*
* This software is distributed on an "AS IS" basis without
* warranties or conditions of any kind, either express or implied.
*/
#if !defined VarList_h
#define VarList_h
class CVarList {
public:
int s_bpos; // start position source record, first byte 0
int s_npos; // number of position source record
int VarIndex; // index variable, -1 for untouched positions
int d_bpos; // start position destination record, first byte 0
int d_npos; // number of positions in destinationrecord
};
#endif