FEI Package Browser (Single Doxygen Collection)  Version of the Day
test_Factory.hpp
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 #ifndef _test_Factory_hpp_
10 #define _test_Factory_hpp_
11 
12 #include <fei_macros.hpp>
13 
14 #include <test_utils/tester.hpp>
15 #include <fei_SharedPtr.hpp>
16 
17 #include <fei_fwd.hpp>
18 
44 class test_Factory : public tester {
45  public:
46  test_Factory(MPI_Comm comm);
47  virtual ~test_Factory();
48 
49  const char* getName()
50  {
51  static const char name[] = "fei::Factory";
52  return((const char*)name);
53  }
54 
55  int runtests();
56 
58 };
59 
60 
61 #endif // _test_Factory_hpp_
fei::SharedPtr< fei::Factory >
fei_macros.hpp
fei_fwd.hpp
fei_SharedPtr.hpp
test_Factory
Definition: test_Factory.hpp:44
test_Factory::runtests
int runtests()
Definition: test_Factory.cpp:43
test_Factory::~test_Factory
virtual ~test_Factory()
Definition: test_Factory.cpp:39
test_Factory::test_Factory
test_Factory(MPI_Comm comm)
Definition: test_Factory.cpp:34
tester.hpp
MPI_Comm
#define MPI_Comm
Definition: fei_mpi.h:56
test_Factory::factory_test1
void factory_test1(fei::SharedPtr< fei::Factory > factory)
Definition: test_Factory.cpp:90
test_Factory::getName
const char * getName()
Definition: test_Factory.hpp:49
tester
Definition: tester.hpp:22