waves
Basic FE playground
katoptron.h
Go to the documentation of this file.
1 // global header of the "katoptron" module
2 
3 #ifndef KATOPTRON_H
4 #define KATOPTRON_H
5 
6 #if defined(WIN32)
7 #ifdef tlnos_EXPORTS
8 #define KATOPTRON_API __declspec(dllexport)
9 #else
10 #define KATOPTRON_API __declspec(dllimport)
11 #endif
12 #else
13 #define KATOPTRON_API
14 #endif
15 
16 #include "tbox.h"
17 
22 namespace katoptron
23 {
24 class Problem;
25 class Solver;
26 class Dirichlet;
27 class Neumann;
28 class Medium;
29 class Contact;
30 class Source;
31 class RandomVariable;
32 class Weight;
33 }; // namespace katoptron
34 
35 class DisplayHook;
36 
37 #endif //KATOPTRON_H
katoptron
katoptron namespace
Definition: Algebraic.h:18
DisplayHook
Definition: wDisplayHook.h:8