Amandus: Simulations based on multilevel Schwarz methods
hello.h
Go to the documentation of this file.
1 // Here you should put all your headers files
2 
3 #ifndef __hello_h
4 #define __hello_h
5 
6 namespace Salutation
7 {
8 class Hello
9 {
10 public:
11  void deutsch_hello();
12  void english_hello();
13  void italian_hello();
14 };
15 }
16 #endif
Definition: hello.h:6
void italian_hello()
Definition: hello.cc:21
Definition: hello.h:8
void deutsch_hello()
Definition: hello.cc:9
void english_hello()
Definition: hello.cc:15