aboutsummaryrefslogtreecommitdiff
path: root/src/theme_builder/components/StyleRuleSetEditor.cpp
blob: cfb2ad56ead8247a94442e782b6c3a026aec4e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "StyleRuleSetEditor.h"

namespace cru::theme_builder {
StyleRuleSetEditor::StyleRuleSetEditor() {}

StyleRuleSetEditor::~StyleRuleSetEditor() {}

void StyleRuleSetEditor::BindStyleRuleSet(
    std::shared_ptr<ui::style::StyleRuleSet> rule_set) {
  style_rule_set_ = std::move(rule_set);
  UpdateView();
}

void StyleRuleSetEditor::UpdateView() {
  
}
}  // namespace cru::theme_builder