0efe5ab4fd47685adc0d79b3767ac550d4d651c2
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-constructor / obj.h
1 /*
2 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 */
7
8 #ifndef _OBJ_H
9 #define _OBJ_H
10
11 struct Obj {
12 const char *msg;
13 Obj(const char *msg);
14 ~Obj();
15 };
16
17 struct Objso {
18 const char *msg;
19 Objso(const char *msg);
20 ~Objso();
21 };
22
23 #endif /* _OBJ_H */
This page took 0.029972 seconds and 4 git commands to generate.