APRONXX 0.9.15
/home/mine/apron/apronxx/apxx_ppl_inline.hh
Go to the documentation of this file.
1/* -*- C++ -*-
2 * apxx_ppl_inline.hh
3 *
4 * APRON Library / C++ inline functions
5 *
6 * DO NOT INCLUDE THIS FILE DIRECTLY
7 *
8 * Copyright (C) Antoine Mine' 2007
9 *
10 */
11/* This file is part of the APRON Library.
12 As it includes both APRON and PPL files, it is released under GPL license.
13 Please read the ppl/COPYING file packaged in the distribution.
14*/
15
16inline ppl_poly_manager::ppl_poly_manager(bool strict)
17 : manager(ap_ppl_poly_manager_alloc(strict))
18{}
19
20inline ppl_grid_manager::ppl_grid_manager()
21 : manager(ap_ppl_grid_manager_alloc())
22{}
23
24inline manager& ppl_poly_manager::operator=(const manager& m)
25{
26 return manager::operator=(m);
27}
28
29inline manager& ppl_grid_manager::operator=(const manager& m)
30{
31 return manager::operator=(m);
32}