get_test_data.h revision 569f64afd3db2b43003978765b833669f99477d2
1569f64afd3db2b43003978765b833669f99477d2Yabin Cui/*
2569f64afd3db2b43003978765b833669f99477d2Yabin Cui * Copyright (C) 2015 The Android Open Source Project
3569f64afd3db2b43003978765b833669f99477d2Yabin Cui *
4569f64afd3db2b43003978765b833669f99477d2Yabin Cui * Licensed under the Apache License, Version 2.0 (the "License");
5569f64afd3db2b43003978765b833669f99477d2Yabin Cui * you may not use this file except in compliance with the License.
6569f64afd3db2b43003978765b833669f99477d2Yabin Cui * You may obtain a copy of the License at
7569f64afd3db2b43003978765b833669f99477d2Yabin Cui *
8569f64afd3db2b43003978765b833669f99477d2Yabin Cui *      http://www.apache.org/licenses/LICENSE-2.0
9569f64afd3db2b43003978765b833669f99477d2Yabin Cui *
10569f64afd3db2b43003978765b833669f99477d2Yabin Cui * Unless required by applicable law or agreed to in writing, software
11569f64afd3db2b43003978765b833669f99477d2Yabin Cui * distributed under the License is distributed on an "AS IS" BASIS,
12569f64afd3db2b43003978765b833669f99477d2Yabin Cui * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13569f64afd3db2b43003978765b833669f99477d2Yabin Cui * See the License for the specific language governing permissions and
14569f64afd3db2b43003978765b833669f99477d2Yabin Cui * limitations under the License.
15569f64afd3db2b43003978765b833669f99477d2Yabin Cui */
16569f64afd3db2b43003978765b833669f99477d2Yabin Cui
17569f64afd3db2b43003978765b833669f99477d2Yabin Cui#ifndef SIMPLE_PERF_GET_TEST_DATA_H_
18569f64afd3db2b43003978765b833669f99477d2Yabin Cui#define SIMPLE_PERF_GET_TEST_DATA_H_
19569f64afd3db2b43003978765b833669f99477d2Yabin Cui
20569f64afd3db2b43003978765b833669f99477d2Yabin Cui#include <string>
21569f64afd3db2b43003978765b833669f99477d2Yabin Cui
22569f64afd3db2b43003978765b833669f99477d2Yabin Cuistd::string GetTestData(const std::string& filename);
23569f64afd3db2b43003978765b833669f99477d2Yabin Cui
24569f64afd3db2b43003978765b833669f99477d2Yabin Cui#endif  // SIMPLE_PERF_GET_TEST_DATA_H_
25