blob: 261636d3bdbab30e74d0f19f83861cc533562d4c [file] [log] [blame]
Lloyd Pique2ee39572017-12-20 16:48:10 -08001/*
Lloyd Pique3823e7b2018-10-18 16:58:10 -07002 * Copyright 2018 The Android Open Source Project
Lloyd Pique2ee39572017-12-20 16:48:10 -08003 *
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
Lloyd Pique3823e7b2018-10-18 16:58:10 -070017#include <renderengine/mock/RenderEngine.h>
Peiyong Linfa334ed2018-08-07 14:50:13 -070018
Lloyd Pique2ee39572017-12-20 16:48:10 -080019namespace android {
Peiyong Lin833074a2018-08-28 11:53:54 -070020namespace renderengine {
Lloyd Pique2ee39572017-12-20 16:48:10 -080021namespace mock {
22
Lloyd Pique3823e7b2018-10-18 16:58:10 -070023// The Google Mock documentation recommends explicit non-header instantiations
24// for better compile time performance.
Lloyd Pique2ee39572017-12-20 16:48:10 -080025RenderEngine::RenderEngine() = default;
26RenderEngine::~RenderEngine() = default;
27
Lloyd Pique2ee39572017-12-20 16:48:10 -080028} // namespace mock
Peiyong Lin833074a2018-08-28 11:53:54 -070029} // namespace renderengine
Lloyd Pique2ee39572017-12-20 16:48:10 -080030} // namespace android