FEI Package Browser (Single Doxygen Collection) Version of the Day
Loading...
Searching...
No Matches
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"
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
34
LibraryWrapper(fei::SharedPtr< LinearSystemCore > lsc)