blob: b88d613ad5501ee423a6b0475599767696847e58 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
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 */
Brian Carlstrom0755ec52012-01-11 15:19:46 -080016
Mingyao Yang98d1cc82014-05-15 17:02:16 -070017#ifndef ART_COMPILER_COMPILED_CLASS_H_
18#define ART_COMPILER_COMPILED_CLASS_H_
Brian Carlstrom0755ec52012-01-11 15:19:46 -080019
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020#include "mirror/class.h"
Brian Carlstrom0755ec52012-01-11 15:19:46 -080021
22namespace art {
23
24class CompiledClass {
25 public:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026 explicit CompiledClass(mirror::Class::Status status) : status_(status) {}
Elliott Hughesff17f1f2012-01-24 18:12:29 -080027 ~CompiledClass() {}
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028 mirror::Class::Status GetStatus() const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -080029 return status_;
30 }
31 private:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080032 const mirror::Class::Status status_;
Brian Carlstrom0755ec52012-01-11 15:19:46 -080033};
34
35} // namespace art
36
Mingyao Yang98d1cc82014-05-15 17:02:16 -070037#endif // ART_COMPILER_COMPILED_CLASS_H_