Initial resource limitation model API and classes.
[osm/vim-emu.git] / src / emuvim / dcemulator / resourcemodel / upbrm.py
1 """
2 Playground for resource models created by University of Paderborn.
3 """
4 import logging
5 from emuvim.dcemulator.resourcemodel import BaseResourceModel
6
7 LOG = logging.getLogger("upbrm")
8 LOG.setLevel(logging.DEBUG)
9
10
11 class UpbSimpleCloudDcApproxRM(BaseResourceModel):
12
13 def __init__(self):
14 super(self.__class__, self).__init__()
15