blob: 3bb45a29eddee5b53037d91dd9463161b98bb59c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright 2007 Nanorex, Inc. See LICENSE file for details.
"""
Assembly_API.py -- API for class assembly, also useful for isinstance tests
Note: the API is not filled in yet, but the isinstance usage is
relied on to remove some import cycles.
@author: bruce
@version: $Id$
@copyright: 2007 Nanorex, Inc. See LICENSE file for details.
"""
class Assembly_API:
# TODO: add the methods that are assumed by clients of any assembly
pass
|