chromium/third_party/crashpad/crashpad/client/annotation_list.cc

// Copyright 2017 The Crashpad Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "client/annotation_list.h"

#include "base/check_op.h"
#include "client/crashpad_info.h"

namespace crashpad {

template <typename T>
T* AnnotationList::IteratorBase<T>::operator*() const {}

template <typename T>
T* AnnotationList::IteratorBase<T>::operator->() const {}

template <typename T>
AnnotationList::IteratorBase<T>& AnnotationList::IteratorBase<T>::operator++() {}

template <typename T>
AnnotationList::IteratorBase<T> AnnotationList::IteratorBase<T>::operator++(
    int) {}

template <typename T>
bool AnnotationList::IteratorBase<T>::operator!=(
    const IteratorBase& other) const {}

template <typename T>
AnnotationList::IteratorBase<T>::IteratorBase(T* head, const Annotation* tail)
    :{}

template class AnnotationList::IteratorBase<Annotation>;
template class AnnotationList::IteratorBase<const Annotation>;

AnnotationList::AnnotationList()
    :{}

AnnotationList::~AnnotationList() {}

// static
AnnotationList* AnnotationList::Get() {}

// static
AnnotationList* AnnotationList::Register() {}

void AnnotationList::Add(Annotation* annotation) {}

AnnotationList::Iterator AnnotationList::begin() {}

AnnotationList::ConstIterator AnnotationList::cbegin() const {}

AnnotationList::Iterator AnnotationList::end() {}

AnnotationList::ConstIterator AnnotationList::cend() const {}

}  // namespace crashpad