Home | History | Annotate | Download | only in impl
      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_INTERNAL_FORWARD_DECLS_H
     18 #define FRUIT_FRUIT_INTERNAL_FORWARD_DECLS_H
     19 
     20 #include <memory>
     21 #include <vector>
     22 
     23 namespace fruit {
     24 namespace impl {
     25 
     26 class ComponentStorage;
     27 class NormalizedComponentStorage;
     28 class InjectorStorage;
     29 struct TypeId;
     30 struct ComponentStorageEntry;
     31 struct NormalizedBinding;
     32 struct NormalizedMultibinding;
     33 struct NormalizedMultibindingSet;
     34 struct InjectorAccessorForTests;
     35 
     36 template <typename Component, typename... Args>
     37 class ComponentInterfaceImpl;
     38 
     39 template <typename Component, typename... Args>
     40 class LazyComponentImpl;
     41 
     42 namespace meta {
     43 template <typename... PreviousBindings>
     44 struct OpForComponent;
     45 }
     46 
     47 } // namespace impl
     48 
     49 } // namespace fruit
     50 
     51 #endif // FRUIT_FRUIT_INTERNAL_FORWARD_DECLS_H
     52