Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
QHyodaPapi.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* QHyodaPapi.h (C) 2000-2022 */
9/*---------------------------------------------------------------------------*/
10/*---------------------------------------------------------------------------*/
11
12#ifndef Q_HYODA_PAPI_H
13#define Q_HYODA_PAPI_H
14
15#include <QtWidgets>
16
17#include "ui_hyodaPapi.h"
18
19class QHyodaTool;
20
21class QHyodaPapi:public QWidget, public Ui::profilerWidget {
22 Q_OBJECT
23public:
26 void update(QByteArray *byteArray);
27public:
28 const int max_nb_func_to_profile=4;
29 void ini();
30private:
31 QHyodaTool *tool;
32};
33
34#endif // Q_HYODA_PAPI_H
35