Skip to content

Commit

Permalink
missed part of merge
Browse files Browse the repository at this point in the history
  • Loading branch information
cozzyd committed Mar 4, 2024
1 parent 67843cc commit 220e605
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions core/include/core/G3PipelineInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,8 @@
#define _G3_PIPELINEINFO_H

#include <G3Frame.h>
#include <G3Map.h>
#include <vector>

class G3ModulePythonArg : public G3FrameObject {
public:
std::string value;

G3ModulePythonArg(const std::string &v) : value(v) {}
G3ModulePythonArg() {}

template <class A> void serialize(A &ar, unsigned v);
std::string Summary() const { return value; };
bool operator ==(const G3ModulePythonArg &other) const { return other.value == value; };
};
#include <map>

class G3ModuleArg : public G3FrameObject {
public:
Expand All @@ -39,7 +27,7 @@ class G3ModuleConfig : public G3FrameObject {
std::string modname;
std::string instancename;

G3MapFrameObject config;
std::map<std::string, G3ModuleArg> config;

template <class A> void load(A &ar, unsigned v);
template <class A> void save(A &ar, unsigned v) const;
Expand Down

0 comments on commit 220e605

Please sign in to comment.