~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to libdocument/ev-document-security.h

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2011-04-14 16:20:57 UTC
  • mfrom: (1.6.4 upstream)
  • mto: (1.3.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 138.
  • Revision ID: james.westby@ubuntu.com-20110414162057-0ofhbd139zs6ev6y
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *
19
19
 * You should have received a copy of the GNU General Public License
20
20
 * along with this program; if not, write to the Free Software
21
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 
21
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22
22
 */
23
23
 
24
24
#if !defined (__EV_EVINCE_DOCUMENT_H_INSIDE__) && !defined (EVINCE_COMPILATION)
39
39
 
40
40
#define EV_TYPE_DOCUMENT_SECURITY                 (ev_document_security_get_type ())
41
41
#define EV_DOCUMENT_SECURITY(o)                   (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurity))
42
 
#define EV_DOCUMENT_SECURITY_IFACE(k)             (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurityIface))
 
42
#define EV_DOCUMENT_SECURITY_IFACE(k)             (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurityInterface))
43
43
#define EV_IS_DOCUMENT_SECURITY(o)                (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_SECURITY))
44
44
#define EV_IS_DOCUMENT_SECURITY_IFACE(k)          (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_SECURITY))
45
 
#define EV_DOCUMENT_SECURITY_GET_IFACE(inst)      (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurityIface))
46
 
 
47
 
typedef struct _EvDocumentSecurity      EvDocumentSecurity;
48
 
typedef struct _EvDocumentSecurityIface EvDocumentSecurityIface;
49
 
 
50
 
struct _EvDocumentSecurityIface
 
45
#define EV_DOCUMENT_SECURITY_GET_IFACE(inst)      (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_SECURITY, EvDocumentSecurityInterface))
 
46
 
 
47
typedef struct _EvDocumentSecurity          EvDocumentSecurity;
 
48
typedef struct _EvDocumentSecurityInterface EvDocumentSecurityInterface;
 
49
 
 
50
struct _EvDocumentSecurityInterface
51
51
{
52
52
        GTypeInterface base_iface;
53
53