2007-08-09 18:51:47 +02:00
|
|
|
/*
|
|
|
|
|
CINELERRA.h - global definitions and common types
|
|
|
|
|
|
|
|
|
|
|
2008-03-10 04:25:03 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Christian Thaeter <ct@pipapo.org>
|
2007-08-09 18:51:47 +02:00
|
|
|
Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef CINELERRA_H
|
|
|
|
|
#define CINELERRA_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif /* ========================== common C Part ============ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif /* ==================== (End) common C Part ============ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-08-17 00:36:07 +02:00
|
|
|
#ifndef __cplusplus
|
|
|
|
|
#include "nobugcfg.h"
|
2007-08-09 18:51:47 +02:00
|
|
|
|
2007-08-17 00:36:07 +02:00
|
|
|
#else /* ========================== C++-Part ================= */
|
2007-08-09 18:51:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/* common types frequently used... */
|
|
|
|
|
|
2007-08-17 00:36:07 +02:00
|
|
|
#include "common/util.hpp"
|
2007-08-09 18:51:47 +02:00
|
|
|
#include "common/time.hpp"
|
2007-08-17 00:36:07 +02:00
|
|
|
#include "common/appconfig.hpp" // includes NoBug via "nobugcfg.h"
|
|
|
|
|
#include "common/error.hpp"
|
2007-08-09 18:51:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace cinelerra
|
|
|
|
|
{
|
|
|
|
|
/* additional global configuration goes here... */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace cinelerra
|
|
|
|
|
|
|
|
|
|
#endif /* ===================== (End) C++-Part ================= */
|
|
|
|
|
|
|
|
|
|
#endif /*CINELERRA_H*/
|