Nalu
Nalu: a generalized unstructured massively parallel low Mach flow code designed to support a variety of energy applications of interest (most notably Wind ECP) built on the Sierra Toolkit and Trilinos solver Tpetra/Epetra stack. The open source BSD, clause 3 license model has been chosen for the code base. See LICENSE for more information. http://NaluCFD.org
example.h
Go to the documentation of this file.
1 
20 #ifndef EXAMPLECLASS_H
21 #define EXAMPLECLASS_H
22 
24 {
25 
26 public:
27 
29  ExampleClass();
30 
36  ExampleClass(int a, float b);
37 
45  ~ExampleClass();
46 
48  void DoSomething();
49 
56  void DoNothing();
57 
76  void* VeryUsefulMethod(bool level);
77 
94  void* AnotherMethod(bool level);
95 
96 private:
97 
98  const char* fQuestion;
99  int fAnswer;
100 
101 }; // End of class ExampleClass
102 
103 #endif // EXAMPLE_H
ExampleClass()
Create an ExampleClass.
Here is a brief description of the example class.
Definition: example.h:23
void * VeryUsefulMethod(bool level)
Brief description of a useful method.
void * AnotherMethod(bool level)
Brief description of a useful method.
~ExampleClass()
ExampleClass destructor description.
void DoNothing()
This is a method that does so much that I must write an epic novel just to describe how much it truly...
void DoSomething()
This method does something.
int fAnswer
The answer.
Definition: example.h:99
const char * fQuestion
The question.
Definition: example.h:98