~registry/scalestack/trunk

« back to all changes in this revision

Viewing changes to bin/scalestack.cc

  • Committer: Eric Day
  • Date: 2010-07-02 04:33:01 UTC
  • mfrom: (56.1.4)
  • Revision ID: git-v1:1084ed00d423bd6296f3362ba35e6781eca9233a
Merged style-updates branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#include <scalestack/kernel/core.h>
20
20
 
 
21
using namespace std;
 
22
 
21
23
int main(int argc, const char* argv[])
22
24
{
23
25
  scalestack::kernel::core core;
33
35
    core.set_signal_handlers();
34
36
    core.run();
35
37
  }
36
 
  catch (std::exception& e)
 
38
  catch (exception& e)
37
39
  {
38
 
    std::cout << e.what() << std::endl;
 
40
    cout << e.what() << endl;
39
41
    return 1;
40
42
  }
41
43