Skip to content

Commit

Permalink
Added new stucts
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Glowacki committed Jul 29, 2024
1 parent 97ae8ca commit 5b7a5bf
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/mvc/BlueskyPlan.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*-----------------------------------------------------------------------------
* Copyright (c) 2024, UChicago Argonne, LLC
* See LICENSE file.
*---------------------------------------------------------------------------*/

#include <mvc/BlueskyComm.h>

39 changes: 39 additions & 0 deletions src/mvc/BlueskyPlan.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*-----------------------------------------------------------------------------
* Copyright (c) 2024, UChicago Argonne, LLC
* See LICENSE file.
*---------------------------------------------------------------------------*/

#ifndef BLUESKY_PLAN_H
#define BLUESKY_PLAN_H

//---------------------------------------------------------------------------

#include <unordered_map>

//---------------------------------------------------------------------------
struct BlueSkyParam
{
BlueSkyParam()
{
default_val = "0.0";
}
QString name;
QString description;
QString default_val;
};

struct BlueskyPlan
{
BlueskyPlan(){}
QString name;
QString description;
QString module;
std::unordered_map<QString, BlueSkyParam> parameters;
};


//---------------------------------------------------------------------------

#endif /* */

//---------------------------------------------------------------------------

0 comments on commit 5b7a5bf

Please sign in to comment.