/** * src/class_diagram/model/visitor/element_visitor_context.cc * * Copyright (c) 2021 Bartek Kryza * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "element_visitor_context.h" #include "translation_unit_context.h" namespace clanguml::class_diagram::visitor { template element_visitor_context::element_visitor_context( clanguml::class_diagram::model::diagram &diagram, T &element) : element_{element} , diagram_{diagram} { } template void element_visitor_context::set_parent_class( clanguml::class_diagram::model::class_ *parent_class) { parent_class_ = parent_class; } template clanguml::class_diagram::model::class_ * element_visitor_context::parent_class() { return parent_class_; } template T &element_visitor_context::element() { return element_; } template clanguml::class_diagram::model::diagram &element_visitor_context::diagram() { return diagram_; } }