| 375 | |
| 376 | template <class T> |
| 377 | static Euler<T> * |
| 378 | eulerConstructor2b(T i, T j, T k, int iorder) |
| 379 | { |
| 380 | typename Euler<T>::Order o = typename Euler<T>::Order (iorder); |
| 381 | return new Euler<T>(i, j, k, o); |
| 382 | } |
| 383 | |
| 384 | template <class T> |
| 385 | static Euler<T> * |
nothing calls this directly
no outgoing calls
no test coverage detected