1 /*
2  * Copyright (c) 2013 Stephen Williams (steve@icarus.com)
3  *
4  *    This source code is free software; you can redistribute it
5  *    and/or modify it in source code form under the terms of the GNU
6  *    General Public License as published by the Free Software
7  *    Foundation; either version 2 of the License, or (at your option)
8  *    any later version.
9  *
10  *    This program is distributed in the hope that it will be useful,
11  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *    GNU General Public License for more details.
14  *
15  *    You should have received a copy of the GNU General Public License
16  *    along with this program; if not, write to the Free Software
17  *    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19 
20 # include  "netscalar.h"
21 
22 using namespace std;
23 
24 netreal_t netreal_t::type_real;
25 netreal_t netreal_t::type_shortreal;
26 netstring_t netstring_t::type_string;
27 
~netreal_t()28 netreal_t::~netreal_t()
29 {
30 }
31 
base_type() const32 ivl_variable_type_t netreal_t::base_type() const
33 {
34       return IVL_VT_REAL;
35 }
36 
~netstring_t()37 netstring_t::~netstring_t()
38 {
39 }
40 
base_type() const41 ivl_variable_type_t netstring_t::base_type() const
42 {
43       return IVL_VT_STRING;
44 }
45