sessiond: main.cpp: iterate on list using list_iteration_adapter
[lttng-tools.git] / tests / utils / testapp / gen-ust-events-constructor / obj.h
... / ...
CommitLineData
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
11struct Obj {
12 const char *msg;
13 explicit Obj(const char *msg);
14 ~Obj();
15};
16
17struct Objso {
18 const char *msg;
19 explicit Objso(const char *msg);
20 ~Objso();
21};
22
23#endif /* _OBJ_H */
This page took 0.022975 seconds and 5 git commands to generate.