12faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes/*
22faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Copyright (C) 2011 The Android Open Source Project
32faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
42faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
52faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * you may not use this file except in compliance with the License.
62faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * You may obtain a copy of the License at
72faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
82faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
92faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
102faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Unless required by applicable law or agreed to in writing, software
112faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
122faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * See the License for the specific language governing permissions and
142faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * limitations under the License.
152faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes */
1669759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro
17578bbdc684db8ed68e9fedbc678669d27fa68b6eBrian Carlstrom#include "offsets.h"
1869759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro
19cf7f19135f0e273f7b0136315633c2abfc715343Ian Rogers#include <ostream>
2069759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro
2169759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapironamespace art {
2269759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro
2369759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapirostd::ostream& operator<<(std::ostream& os, const Offset& offs) {
2469759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro  return os << offs.Int32Value();
2569759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro}
2669759eaa6fd4386f1e6d8748052ad221087b3476Carl Shapiro
27362f9bc807169bcfc8761dde067bbfb79b5ad0fdElliott Hughes}  // namespace art
28