Skip to content
Snippets Groups Projects
Commit 93e84da5 authored by Yann Boucher's avatar Yann Boucher
Browse files

Ajout de petis bouts de documentation manquants

parent 06cff8e2
No related branches found
No related tags found
No related merge requests found
Pipeline #79836 passed
......@@ -597,7 +597,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE =
EXCLUDE = src/gif
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
......
......@@ -24,11 +24,14 @@ public:
return _msg.c_str();
}
};
//! \brief Fenêtre de dialogue permettant de charger une configuration.
class ConfigurationLoadingDialog : public QDialog
{
Q_OBJECT
public:
//! Construit le ConfigurationLoadingDialog à partir d'un parent et du nom du modèle actuel.
explicit ConfigurationLoadingDialog(const QString& current_model, QWidget *parent = nullptr);
~ConfigurationLoadingDialog();
......
......@@ -31,6 +31,7 @@ class ModelLoadingDialog : public QDialog
Q_OBJECT
public:
//! Construit le ModelLoadingDialog à partir d'un parent.
explicit ModelLoadingDialog(QWidget *parent = nullptr);
~ModelLoadingDialog();
......
......@@ -77,6 +77,7 @@ private:
class RLEStructureReader : public StructureReader
{
public:
//! \brief Constructeur prenant en argument les données du fichier à lire sous forme de std::string
RLEStructureReader(const std::string& in_data):
StructureReader(in_data)
{}
......@@ -91,6 +92,7 @@ private:
class JSONStructureReader : public StructureReader
{
public:
//! \brief Constructeur prenant en argument les données du fichier à lire sous forme de std::string
JSONStructureReader(const std::string& in_data):
StructureReader(in_data)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment