1 /* Copyright 2018 The TensorFlow Authors. All Rights Reserved. 2 Licensed under the Apache License, Version 2.0 (the "License"); 3 you may not use this file except in compliance with the License. 4 You may obtain a copy of the License at 5 http://www.apache.org/licenses/LICENSE-2.0 6 Unless required by applicable law or agreed to in writing, software 7 distributed under the License is distributed on an "AS IS" BASIS, 8 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 9 See the License for the specific language governing permissions and 10 limitations under the License. 11 ==============================================================================*/ 12 #ifndef TENSORFLOW_LITE_EXPERIMENTAL_MICRO_KERNELS_ALL_OPS_RESOLVER_H_ 13 #define TENSORFLOW_LITE_EXPERIMENTAL_MICRO_KERNELS_ALL_OPS_RESOLVER_H_ 14 15 #include "tensorflow/lite/experimental/micro/compatibility.h" 16 #include "tensorflow/lite/experimental/micro/micro_mutable_op_resolver.h" 17 18 namespace tflite { 19 namespace ops { 20 namespace micro { 21 22 class AllOpsResolver : public MicroMutableOpResolver { 23 public: 24 AllOpsResolver(); 25 26 private: 27 TF_LITE_REMOVE_VIRTUAL_DELETE 28 }; 29 30 } // namespace micro 31 } // namespace ops 32 } // namespace tflite 33 34 #endif // TENSORFLOW_LITE_EXPERIMENTAL_MICRO_KERNELS_ALL_OPS_RESOLVER_H_ 35