]> pd.if.org Git - pccts/blob - h/ATokPtr.cpp
auto commit for import
[pccts] / h / ATokPtr.cpp
1 /* ATokPtr.C
2  *
3  * ANTLRToken MUST be defined before entry to this file.
4  *
5  * SOFTWARE RIGHTS
6  *
7  * We reserve no LEGAL rights to the Purdue Compiler Construction Tool
8  * Set (PCCTS) -- PCCTS is in the public domain.  An individual or
9  * company may do whatever they wish with source code distributed with
10  * PCCTS or the code generated by PCCTS, including the incorporation of
11  * PCCTS, or its output, into commerical software.
12  * 
13  * We encourage users to develop software with PCCTS.  However, we do ask
14  * that credit is given to us for developing PCCTS.  By "credit",
15  * we mean that if you incorporate our source code into one of your
16  * programs (commercial product, research project, or otherwise) that you
17  * acknowledge this fact somewhere in the documentation, research report,
18  * etc...  If you like PCCTS and have developed a nice tool with the
19  * output, please mention that you developed it using PCCTS.  In
20  * addition, we ask that this header remain intact in our source code.
21  * As long as these guidelines are kept, we expect to continue enhancing
22  * this system and expect to make other tools available as they are
23  * completed.
24  *
25  * ANTLR 1.33
26  * Written by Russell Quong June 30, 1995
27  * Adapted by Terence Parr to ANTLR stuff
28  * Parr Research Corporation
29  * with Purdue University and AHPCRC, University of Minnesota
30  * 1989-1995
31  */
32
33 #include "ATokPtr.h"
34
35 void ANTLRTokenPtr::ref() const
36 {
37     if (ptr_ != NULL) {
38                 ptr_->ref();
39         }
40 }
41
42 #include <stdio.h>
43
44 void ANTLRTokenPtr::deref()
45 {
46     if (ptr_ != NULL)
47     {
48                 ptr_->deref();
49                 if ( ptr_->nref()==0 )
50                 {
51                     delete ptr_;
52                         ptr_ = NULL;
53                 }
54     }
55 }
56
57 ANTLRTokenPtr::~ANTLRTokenPtr()
58 {
59     deref();
60 }
61
62 void ANTLRTokenPtr::operator = (const ANTLRTokenPtr lhs)
63 {
64     lhs.ref();  // protect against "xp = xp"; ie same underlying object
65     deref();
66     ptr_ = lhs.ptr_;
67 }
68
69 void ANTLRTokenPtr::operator = (ANTLRAbstractToken *addr)
70 {
71     if (addr != NULL) {
72         addr->ref();
73     }
74     deref();
75     ptr_ = addr;
76 }