Apache Celix  latest
Apache Celix is a framework for C, C++14 and C++17 to develop dynamic modular software applications using component and in-process service-oriented programming.
FrameworkUtils.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
20 #pragma once
21 
22 #include <string>
23 #include <vector>
24 
25 #include "celix_framework_utils.h"
26 
27 namespace celix {
28 
48  inline std::size_t installBundleSet(celix::Framework& framework, const std::string& bundleSet, bool autoStart = true) {
49  return celix_framework_utils_installBundleSet(framework.getCFramework(), bundleSet.c_str(), autoStart);
50  }
51 
52 }
celix
Definition: Bundle.h:28
celix::installBundleSet
std::size_t installBundleSet(celix::Framework &framework, const std::string &bundleSet, bool autoStart=true)
Install bundles to the provided framework using the provided bundle set.
Definition: FrameworkUtils.h:48
celix::Framework::getCFramework
celix_framework_t * getCFramework() const
Get the C framework.
Definition: Framework.h:109
celix::Framework
A Celix framework instance. A framework is also known as a system bundle.
Definition: Framework.h:38