Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deleting trash #92

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion array_core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ set(SOURCE_FILES
"../common_utils/common_constants.cpp"
"../plotly_maker/plotly_maker.cpp"
"../plotly_maker/html_parts.cpp"
"configurator.cpp"
)
set(HEADER_FILES
"../common_utils/common_utils.h"
Expand Down
12 changes: 0 additions & 12 deletions array_core/configurator.cpp

This file was deleted.

32 changes: 0 additions & 32 deletions array_core/configurator.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,38 +59,6 @@ struct Config {
surfaceSettings surf;
};


//Old
/*
class Configurator {
public:
static Configurator& getInstance() {
static Configurator instance;
return instance;
}
Configurator(Configurator const&) = delete;
void operator=(Configurator const&) = delete;

void reset() { //to default settings
common = commonSettings();
chart = chartSettings();
heatmap = heatMapSettings();
surf = surfaceSettings();
};

commonSettings common;
chartSettings chart;
heatMapSettings heatmap;
surfaceSettings surf;

private:
Configurator() {};

};

Configurator& config();
*/

//#STOP_GRAB_TO_DV_NAMESPACE
}// end namespace dv

Expand Down
Loading