nngn
Loading...
Searching...
No Matches
realloc_test.h
Go to the documentation of this file.
1#ifndef NNGN_TESTS_UTILS_ALLOC_REALLOC_H
2#define NNGN_TESTS_UTILS_ALLOC_REALLOC_H
3
4#include <QTest>
5
6class ReallocTest : public QObject {
7 Q_OBJECT
8private slots:
9 void alloc(void);
10 void realloc(void);
11 void typed_alloc(void);
12 void typed_realloc(void);
13};
14
15#endif
Definition realloc_test.h:6
void typed_alloc(void)
Definition realloc_test.cpp:43
void realloc(void)
Definition realloc_test.cpp:29
void typed_realloc(void)
Definition realloc_test.cpp:54
void alloc(void)
Definition realloc_test.cpp:19