/* * Copyright (c) 2011 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include namespace Swift { struct MUCItem { MUCItem() {} boost::optional realJID; boost::optional nick; boost::optional affiliation; boost::optional role; boost::optional actor; boost::optional reason; }; }