summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/GrammerUtil.cpp
blob: a27c390f169173a45a14f5386811e8fcdd3354c3 (plain)
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
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

#include <Slice/GrammerUtil.h>

using namespace std;
using namespace Slice;

void IceInternal::incRef(StringTok* p) { p->__incRef(); }
void IceInternal::decRef(StringTok* p) { p->__decRef(); }
void IceInternal::incRef(TypeStringListTok* p) { p->__incRef(); }
void IceInternal::decRef(TypeStringListTok* p) { p->__decRef(); }
void IceInternal::incRef(StringListTok* p) { p->__incRef(); }
void IceInternal::decRef(StringListTok* p) { p->__decRef(); }
void IceInternal::incRef(BoolTok* p) { p->__incRef(); }
void IceInternal::decRef(BoolTok* p) { p->__decRef(); }
void IceInternal::incRef(TypeListTok* p) { p->__incRef(); }
void IceInternal::decRef(TypeListTok* p) { p->__decRef(); }
void IceInternal::incRef(ClassListTok* p) { p->__incRef(); }
void IceInternal::decRef(ClassListTok* p) { p->__decRef(); }