-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAMPL.h
32 lines (28 loc) · 831 Bytes
/
AMPL.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
32
/*
* 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 AMPL_h
#define AMPL_h
#include "Table.h"
#include "DataCell.h"
#include "Variable.h"
#include "SubCodeList.h"
class CAMPL
{
public:
bool WriteTableInAMPL(CTable *tab, CVariable *var, FILE *fd);
};
#endif // AMPL_h