| 12345678910111213141516 |
- '''This file is part of AToMPM - A Tool for Multi-Paradigm Modelling
- Copyright 2011 by the AToMPM team and licensed under the LGPL
- See COPYING.lesser and README.md in the root of this project for full details'''
- from .primitive import Primitive
- # Abstract class
- class CompositePrimitive(Primitive):
- def __init__(self):
- super(CompositePrimitive, self).__init__()
- def packet_in(self, packet):
- raise AttributeError('Method not implemented')
- def next_in(self, packet):
- raise AttributeError('Method not implemented')
|