source: server/lib/gutenbach/ipp/object_attributes/__init__.py @ b828a96

no-cups
Last change on this file since b828a96 was b828a96, checked in by Jessica B. Hamrick <jhamrick@…>, 12 years ago

Use classes for standard IPP attributes

  • Property mode set to 100644
File size: 518 bytes
Line 
1from job_template_attributes import *
2from job_description_attributes import *
3from printer_description_attributes import *
4from operation_attributes import *
5
6__all__ = ['job_template_attributes',
7           'job_description_attributes',
8           'printer_description_attributes',
9           'operation_attributes']
10__all__.extend(job_template_attributes.__all__)
11__all__.extend(job_description_attributes.__all__)
12__all__.extend(printer_description_attributes.__all__)
13__all__.extend(operation_attributes.__all__)
Note: See TracBrowser for help on using the repository browser.