// Copyright CERN and copyright holders of ALICE O2. This software is // distributed under the terms of the GNU General Public License v3 (GPL // Version 3), copied verbatim in the file "COPYING". // // See http://alice-o2.web.cern.ch/license for full licensing information. // // In applying this license CERN does not waive the privileges and immunities // granted to it by virtue of its status as an Intergovernmental Organization // or submit itself to any jurisdiction. /// /// @file Bar.cxx /// @author Barthelemy von Haller /// #include "Bar.h" #include namespace o2 { namespace Examples { namespace ExampleModule1 { Bar::Bar() = default; Bar::~Bar() = default; void Bar::greet() { std::cout << "Hello world from ExampleModule1::Bar" << std::endl; } int Bar::returnsN(int n) { /// \todo This is how you can markup a todo in your code that will show up in the documentation of your project. /// \bug This is how you annotate a bug in your code. return n; } } // namespace ExampleModule1 } // namespace Examples } // namespace AliceO2