~markwright/scalestack/zeromq

« back to all changes in this revision

Viewing changes to bin/scalestack.cc

  • Committer: Eric Day
  • Date: 2010-02-21 10:36:03 UTC
  • Revision ID: eday@oddments.org-20100221103603-u0agc1fsduqhl728
Initial commit with build system and basic module loading.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Scale Stack
 
3
 *
 
4
 * Copyright (C) 2010 Eric Day (eday@oddments.org)
 
5
 * All rights reserved.
 
6
 *
 
7
 * Use and distribution licensed under the BSD license. See the
 
8
 * COPYING file in the root project directory for full text.
 
9
 */
 
10
 
 
11
/**
 
12
 * @file
 
13
 * @brief Basic application to run generic Scale Stack kernel.
 
14
 */
 
15
 
 
16
#include <ScaleStack/Kernel.h>
 
17
 
 
18
int main(int argc, char* argv[])
 
19
{
 
20
  ScaleStack::Kernel kernel(argc, argv);
 
21
  kernel.addModule("ConfigCommandLine");
 
22
  kernel.run();
 
23
  return 0;
 
24
}