FEI Version of the Day
Loading...
Searching...
No Matches
test_Factory.hpp
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
44class 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
57 void factory_test1(fei::SharedPtr<fei::Factory> factory);
58};
59
60
61#endif // _test_Factory_hpp_
const char * getName()