1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #include <cmajor/binder/ConstantStructureRepository.hpp>
 7 
 8 namespace cmajor {namespace binder {
 9 
10 ConstantStructureRepository::ConstantStructureRepository()
11 {
12 }
13 
14 void ConstantStructureRepository::AddConstantStructure(ConstantSymbol* constantStructureSymbol)
15 {
16     constantStructures.push_back(constantStructureSymbol);
17 }
18 
19 } } // namespace cmajor::binder