FEI Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
fei_LibraryWrapper.cpp
Go to the documentation of this file.
1 /*--------------------------------------------------------------------*/
2 /* Copyright 2005 Sandia Corporation. */
3 /* Under the terms of Contract DE-AC04-94AL85000, there is a */
4 /* non-exclusive license for use of this work by or on behalf */
5 /* of the U.S. Government. Export of this program may require */
6 /* a license from the United States Government. */
7 /*--------------------------------------------------------------------*/
8 
9 #include "fei_macros.hpp"
10 #include "fei_LibraryWrapper.hpp"
11 #include "fei_LinearSystemCore.hpp"
13 #include <cstdlib>
14 
16  : haveLinearSystemCore_(true),
17  haveFiniteElementData_(false),
18  lsc_(lsc),
19  feData_()
20 {
21 }
22 
24  : haveLinearSystemCore_(false),
25  haveFiniteElementData_(true),
26  lsc_(NULL),
27  feData_(feData)
28 {
29 }
30 
32 {
33 }
34 
LibraryWrapper(fei::SharedPtr< LinearSystemCore > lsc)