blob: 565a874bc3a40fe7832d4f34ff64d9676a6294d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef ICEPY_SLICE_H
#define ICEPY_SLICE_H
#include <Config.h>
extern "C" PyObject* IcePy_loadSlice(PyObject*, PyObject*);
extern "C" PyObject* IcePy_compile(PyObject*, PyObject*);
#endif
|