Merge branch 'master' into verilog-ams
[sverilog.git] / PTask.cc
blobb829e03f2043265afed01f07e985395c7a038798
1 /*
2 * Copyright (c) 1999-2008 Stephen Williams (steve@icarus.com)
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20 # include "config.h"
22 # include "PTask.h"
24 PTask::PTask(perm_string name, PScope*parent)
25 : PScope(name, parent), ports_(0), statement_(0)
29 PTask::~PTask()
33 void PTask::set_ports(svector<PWire*>*p)
35 assert(ports_ == 0);
36 ports_ = p;
39 void PTask::set_statement(Statement*s)
41 assert(statement_ == 0);
42 statement_ = s;
47 * $Log: PTask.cc,v $
48 * Revision 1.7 2002/08/12 01:34:58 steve
49 * conditional ident string using autoconfig.
51 * Revision 1.6 2001/07/25 03:10:48 steve
52 * Create a config.h.in file to hold all the config
53 * junk, and support gcc 3.0. (Stephan Boettcher)
55 * Revision 1.5 2001/04/19 03:04:47 steve
56 * Spurious assert of empty statemnt.
58 * Revision 1.4 2001/01/13 22:20:08 steve
59 * Parse parameters within nested scopes.
61 * Revision 1.3 2000/02/23 02:56:53 steve
62 * Macintosh compilers do not support ident.
64 * Revision 1.2 1999/07/24 02:11:19 steve
65 * Elaborate task input ports.
67 * Revision 1.1 1999/07/03 02:12:51 steve
68 * Elaborate user defined tasks.