/* * This file adds a module to W3C DOM Level 3 to read and write mark associations (Alternative 2). * * This file: http://dom.sixml.org/a2/sixml-ls-3.idl * * Created by: Sudarshan Murthy. smurthy period cs period pdx period edu. * Created on: July 10, 2007 * For more information on Sixml DOM, visit http://dom.sixml.org. * * (c) Sudarshan Murthy. All rights reserved. * Permission to use for non-commercial purpose. Use at your own risk. No warranties expressed or implied. */ #ifndef _SIXMLLS_IDL_ #define _SIXMLLS_IDL_ #include "ls.idl" #pragma prefix "dom.sixml.org" module sixml_ls { //scope of parsing and serializing const unsigned short SI_SCOPE = 1; const unsigned short MARK_ASSOCIATION_SCOPE = 2; const unsigned short MARK_DESCRIPTOR_SCOPE = 3; interface SixmlParser: ls::LSParser { attribute unsigned short scope; }; interface SixmlSerializer: ls::LSSerializer { attribute unsigned short scope; }; }; #endif // _SIXMLLS_IDL_