#-*- coding: utf-8 -*-
from zope.publisher.interfaces.browser import IDefaultBrowserLayer
from falkolab.extjslayer.interfaces import IExtJSLayer, IExtJSDebugLayer

class myproject(IExtJSLayer):
    """Layer fo project specific macros set 
    or othe debug/prodaction independed elements"""

class IMyProjectSkin(myproject, IDefaultBrowserLayer):
    """Prodaction Skin"""

class IMyProjectSkinDebug(IExtJSDebugLayer, IMyProjectSkin):
    """Debug Skin"""