haxr-3000.10.4.2: XML-RPC client and server library.

Copyright(c) Bjorn Bringert 2003-2005
LicenseBSD-style
Maintainerbjorn@bringert.net
Stabilityexperimental
Portabilitynon-portable (requires extensions and non-portable libraries)
Safe HaskellNone
LanguageHaskell2010

Network.XmlRpc.THDeriveXmlRpcType

Description

Uses Template Haskell to automagically derive instances of XmlRpcType

Synopsis

Documentation

asXmlRpcStruct :: Name -> Q [Dec] Source

Creates an XmlRpcType instance which handles a Haskell record as an XmlRpc struct. Example: data Person = Person { name :: String, age :: Int } $(asXmlRpcStruct ''Person)