vscode: Add configurations to run the executables under the debugger
[lttng-tools.git] / tests / utils / testapp / userspace-probe-elf-cxx-binary / test_class.cpp
1 /*
2 * Copyright (C) 2018 Francis Deslauriers <francis.deslauriers@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 *
6 */
7
8 #include "test_class.hpp"
9 test_class::test_class()
10 {
11 test_member = 1;
12 }
13
14 void test_class::test_method()
15 {
16 test_member += 1;
17 }
This page took 0.030884 seconds and 5 git commands to generate.