/* * PDFedit - free program for PDF document manipulation. * Copyright (C) 2006, 2007 PDFedit team: Michal Hocko, * Miroslav Jahoda, * Jozef Misutka, * Martin Petricek * * Project is hosted on http://sourceforge.net/projects/pdfedit */ // vim:tabstop=4:shiftwidth=4:noexpandtab:textwidth=80 /* * ===================================================================================== * Filename: cobject.h * Description: Header file containing definition of IProperty and CObject classes. * Created: 01/18/2006 * Author: jmisutka (06/01/19), * ===================================================================================== */ #ifndef _COBJECT_H #define _COBJECT_H //===================================================================================== // Base class for all cobjects //===================================================================================== #include "iproperty.h" //===================================================================================== // CObjectSimple //===================================================================================== #include "cobjectsimple.h" //===================================================================================== // CArray //===================================================================================== #include "carray.h" //===================================================================================== // CDict //===================================================================================== #include "cdict.h" //===================================================================================== // CObjectStream //===================================================================================== #include "cstream.h" //===================================================================================== // CStreamsXpdfReader //===================================================================================== #include "cstreamsxpdfreader.h" //===================================================================================== // Utility functions not included in previous includes //===================================================================================== #include "cobjecthelpers.h" #endif // _COBJECT_H