__init__.py
Go to the documentation of this file.
1 # -*- Python -*-
2 # -*- coding: utf-8 -*-
3 
4 '''rtctree
5 
6 Copyright (C) 2009-2014
7  Geoffrey Biggs
8  RT-Synthesis Research Group
9  Intelligent Systems Research Institute,
10  National Institute of Advanced Industrial Science and Technology (AIST),
11  Japan
12  All rights reserved.
13 Licensed under the Eclipse Public License -v 1.0 (EPL)
14 http://www.opensource.org/licenses/eclipse-1.0.txt
15 
16 Library for easy access to name servers running components, the components
17 themselves, and managers.
18 
19 '''
20 
21 
22 # Add the IDL path to the Python path
23 import sys
24 import os
25 _openrtm_idl_path = os.path.join(os.path.dirname(__file__), 'rtmidl')
26 if _openrtm_idl_path not in sys.path:
27  sys.path.insert(1, _openrtm_idl_path)
28 del _openrtm_idl_path
29 del os
30 del sys
31 
32 
33 RTCTREE_VERSION = '1.0.0'
34 NAMESERVERS_ENV_VAR = 'RTCTREE_NAMESERVERS'
35 ORB_ARGS_ENV_VAR = 'RTCTREE_ORB_ARGS'
36 
37 
38 # vim: tw=79
39 


rtctree
Author(s): Geoffrey Biggs
autogenerated on Fri Jun 7 2019 21:56:24