forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFoo.cxx
More file actions
32 lines (25 loc) · 613 Bytes
/
Foo.cxx
File metadata and controls
32 lines (25 loc) · 613 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
///
/// @file Foo.cxx
/// @author Barthelemy von Haller
///
#include "ExampleModule1/Foo.h"
#include "Bar.h"
#include <iostream>
namespace AliceO2 {
namespace Examples {
namespace ExampleModule1 {
void Foo::greet()
{
std::cout << "Hello world from ExampleModule1::Foo" << std::endl;
Bar bar;
bar.greet();
}
int Foo::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