/*
MobileRobots Advanced Robotics Navigation and Localization (ARNL)
Version 1.7.0

Copyright (C) 2004, 2005 ActivMedia Robotics LLC
Copyright (C) 2006, 2007, 2008, 2009 MobileRobots Inc.

All Rights Reserved.

MobileRobots Inc does not make any representations about the
suitability of this software for any purpose.  It is provided "as is"
without express or implied warranty.

The license for this software is distributed as LICENSE.txt in the top
level directory.

robots@mobilerobots.com
MobileRobots
10 Columbia Drive
Amherst, NH 03031
800-639-9481

*/
/* SWIG Wrapper for SonArnl */

#ifdef SWIGPYTHON
%module(docstring="Python wrapper library for SONARNL") SonArnlPy
#else
# ifdef SWIGJAVA
%module(docstring="Java wrapper library for SONARNL") SonArnlJava
# else
%module(docstring="Wrapper library for SONARNL") SonArnl
# endif
#endif
 
%feature("autodoc", "1");

// include declarations
%{
#define SONARNL 1
#include "Aria.h"
#include "ArNetworking.h"
#include "Arnl.h"
#include "wrapper_ExtraClasses.h"
%}

#define SONARNL 1

%include "wrapper_common.i"

/* Import BaseArnl wrapper */

#ifndef SWIG_IMPORTED_ARNL_BASE
%import "wrapper_BaseArnl.i"
#define SWIG_IMPORTED_ARNL_BASE 1
#endif

// include files to wrap
%include "ArSonarLocalizationTask.h"

