~cbehrens/scalestack/python-dev

« back to all changes in this revision

Viewing changes to ScaleStack/Kernel/Python/ScaleStack.cc

  • Committer: Chris Behrens
  • Date: 2010-05-09 04:26:31 UTC
  • Revision ID: cbehrens+launchpad@codestud.com-20100509042631-xie1a5rt4y5x7hqb
Moved Python wrappers for Kernel to Kernel/Python

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <strings.h>
27
27
#include <unistd.h>
28
28
 
29
 
#include <ScaleStack/Python/Python2/ScaleStack.h>
 
29
#include <ScaleStack/Kernel/Python/ScaleStack.h>
30
30
 
31
31
using namespace std;
32
32
 
33
33
namespace ScaleStack {
 
34
namespace Kernel {
34
35
namespace Python {
35
36
 
36
37
static PyObject* _get_core(PyObject* self, PyObject* args)
92
93
}
93
94
 
94
95
} /* namespace Python */
 
96
} /* namespace Kernel */
95
97
} /* namespace ScaleStack */
96
98
 
97
99