Everything builds and works again.
[fail.git] / src / services / abf / test / testapp.h
blob2b51c9646e8715e236a2033aafb7b567612cb0fc
1 #ifndef AWFUL_ABF_TESTAPP_H_
2 #define AWFUL_ABF_TESTAPP_H_
4 #include "core/pointer.h"
5 #include <stdexcept>
7 namespace abftestapp
9 class ABFTestApp
11 public:
12 ABFTestApp( int argc, char** argv ) throw( std::runtime_error );
13 ~ABFTestApp();
14 void run();
18 #endif