1 // =================================
 2 // Copyright (c) 2020 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SNGCPP_BINDER_VIRTUAL_BINDER_INCLUDED
 7 #define SNGCPP_BINDER_VIRTUAL_BINDER_INCLUDED
 8 #include <sngcpp/binder/BinderApi.hpp>
 9 #include <sngcpp/symbols/ClassTypeSymbol.hpp>
10 #include <unordered_set>
11 
12 namespace sngcpp { namespace binder {
13 
14 void ResolveOverrideSets(const std::std::unordered_set<sngcpp::symbols::ClassTypeSymbol*>&classes);
15 
16 } } // namespace sngcpp::binder
17 
18 #endif // SNGCPP_BINDER_VIRTUAL_BINDER_INCLUDED