1 /* 2 * Copyright 2014 Google Inc. All rights reserved. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef FRUIT_FRUIT_H 18 #define FRUIT_FRUIT_H 19 20 // This header includes all the public Fruit headers. 21 // To limit the amount of included code, you might want to only include the necessary headers (if only forward 22 // declarations are needed you can include fruit_forward_decls.h). 23 24 // This include is not required here, but having it here shortens the include trace in error messages. 25 #include <fruit/impl/injection_errors.h> 26 27 #include <fruit/component.h> 28 #include <fruit/component_function.h> 29 #include <fruit/fruit_forward_decls.h> 30 #include <fruit/injector.h> 31 #include <fruit/macro.h> 32 #include <fruit/normalized_component.h> 33 #include <fruit/provider.h> 34 35 #endif // FRUIT_FRUIT_H 36