summaryrefslogtreecommitdiff
path: root/include/d/t/d_tg.h
blob: a0cdf29de10f4b3736ca173a6bd9ce266d8f0661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef D_TG_H
#define D_TG_H

#include "d/a/d_a_base.h"

class dTg_c : public dAcBase_c {
public:
    virtual ~dTg_c() {}
};

typedef dAcRef_c<dTg_c> dTgRef_c;

#endif