Merge branch 'master' of steve-icarus@icarus.com:git/verilog
[iverilog.git] / PTask.cc
blobbd725bbb7145aa00fddccfb649c8b0fac6efd51d
1 /*
2 * Copyright (c) 1999 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
19 #ifdef HAVE_CVS_IDENT
20 #ident "$Id: PTask.cc,v 1.7 2002/08/12 01:34:58 steve Exp $"
21 #endif
23 # include "config.h"
25 # include "PTask.h"
27 PTask::PTask()
28 : ports_(0), statement_(0)
32 PTask::~PTask()
36 void PTask::set_ports(svector<PWire*>*p)
38 assert(ports_ == 0);
39 ports_ = p;
42 void PTask::set_statement(Statement*s)
44 assert(statement_ == 0);
45 statement_ = s;
50 * $Log: PTask.cc,v $
51 * Revision 1.7 2002/08/12 01:34:58 steve
52 * conditional ident string using autoconfig.
54 * Revision 1.6 2001/07/25 03:10:48 steve
55 * Create a config.h.in file to hold all the config
56 * junk, and support gcc 3.0. (Stephan Boettcher)
58 * Revision 1.5 2001/04/19 03:04:47 steve
59 * Spurious assert of empty statemnt.
61 * Revision 1.4 2001/01/13 22:20:08 steve
62 * Parse parameters within nested scopes.
64 * Revision 1.3 2000/02/23 02:56:53 steve
65 * Macintosh compilers do not support ident.
67 * Revision 1.2 1999/07/24 02:11:19 steve
68 * Elaborate task input ports.
70 * Revision 1.1 1999/07/03 02:12:51 steve
71 * Elaborate user defined tasks.