blob: a9422fc056d3e679ff313e23aa48b6d5f45a1d15 [file] [log] [blame]
Steven Morelandf1a35f72016-08-17 08:41:49 -07001/*
2 * Copyright (C) 2016 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 */
16
17#include "Note.h"
18
19namespace android {
20
21Note::Note(const std::string &name)
22 : Declaration(name)
23 {}
24
25Note::~Note() {}
26
27void Note::generateSource(Formatter &out) const {
28 out << "/* NOTE:\n";
29
30 out.indent();
31 out << getName();
32 out.unindent();
33
34 out << "\n*/\n";
35}
36
37void Note::processContents(AST &) {
38 // nothing to do
39}
40
41} //namespace android