File: testmemorypool.h

package info (click to toggle)
kdevelop-pg-qt 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,284 kB
  • sloc: cpp: 22,743; lex: 928; ansic: 716; yacc: 615; ruby: 68; sh: 14; lisp: 10; fortran: 6; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
    SPDX-FileCopyrightText: 2009 Milian Wolff <mail@milianw.de>

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef TESTMEMORYPOOL_H
#define TESTMEMORYPOOL_H

#include <QObject>

namespace KDevPG
{

class TestMemoryPool : public QObject
{
    Q_OBJECT

private Q_SLOTS:
    void initTestCase();

    void bigAlloc();
};

}

#endif // TESTMEMORYPOOL_H