aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flext.h
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/flext.h')
-rw-r--r--externals/grill/flext/source/flext.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/externals/grill/flext/source/flext.h b/externals/grill/flext/source/flext.h
new file mode 100644
index 00000000..fd99f253
--- /dev/null
+++ b/externals/grill/flext/source/flext.h
@@ -0,0 +1,45 @@
+/*
+
+flext - C++ layer for Max/MSP and pd (pure data) externals
+
+Copyright (c) 2001,2002 Thomas Grill (xovo@gmx.net)
+For information on usage and redistribution, and for a DISCLAIMER OF ALL
+WARRANTIES, see the file, "license.txt," in this distribution.
+
+*/
+
+/*! \file flext.h
+ \brief This is the main flext include file.
+
+ The basic definitions are set here and the necessary header files are included
+*/
+
+#ifndef __FLEXT_H
+#define __FLEXT_H
+
+
+/*! \defgroup FLEXT_GLOBAL Flext global definitions
+ @{
+*/
+
+//! \brief flext version number
+#define FLEXT_VERSION 400
+
+//! \brief flext version string
+#define FLEXT_VERSTR "0.4.0pre"
+
+//! @}
+
+
+// include all the flext interface definitions
+#include "fldefs.h"
+
+// include the basic flext object classes
+#include "flclass.h"
+
+// include the flext dsp class
+#include "fldsp.h"
+
+#endif // FLEXT_H
+
+