Doxy test  0.42
Maybe spaces will work
 All Classes Files Functions
foo.h
Go to the documentation of this file.
1 /*
2  * foo.h
3  *
4  * Created on: Feb 10, 2015
5  * Author: csabaraduly
6  */
7 
8 #ifndef FOO_H_
9 #define FOO_H_
10 
11 #include <string>
12 
16 struct foo {
18  foo();
19 
26  void fun(std::string const& name);
27 
31  void fie();
32 };
33 
35 {}
36 
37 void foo::fun(std::string const& /*name*/)
38 {
39  fie();
40 }
41 
42 void foo::fie()
43 {
44  //
45 }
46 
47 #endif /* FOO_H_ */
void fun(std::string const &name)
Definition: foo.h:37
Definition: foo.h:16
foo()
Constructor.
Definition: foo.h:34
void fie()
Definition: foo.h:42