-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathgennode.cc
More file actions
33 lines (26 loc) · 919 Bytes
/
gennode.cc
File metadata and controls
33 lines (26 loc) · 919 Bytes
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
/*
* NIST Utils Class Library
* clutils/gennode.cc
* September 1996
* David Sauder
* K. C. Morris
* Development of this software was funded by the United States Government,
* and is not subject to copyright.
*/
/* $Id: gennode.cc,v 3.0.1.4 1997/11/05 22:33:47 sauderd DP3.1 $ */
#include <gennode.h>
#include <gennodelist.h>
//////////////////////////////////////////////////////////////////////////////
// class GenericNode inline functions that depend on other classes
// inline functions
//
// depends on:
// void GenNodeList::Append(GenericNode *node) from the gennodelist.h
//////////////////////////////////////////////////////////////////////////////
void GenericNode::Append( GenNodeList * list ) {
// if(debug_level >= PrintFunctionTrace)
// cout << "GenericNode::Append()\n";
// if(debug_level >= PrintValues)
// cout << "GenericNode::this : '" << this << "'\n";
list->Append( this );
}