blob: 7bd23aa43fac2db892eab45ac3224a60401fa48b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*-----------------------------------------------------------------
LOG
GEM - Graphics Environment for Multimedia
Base class for paths
Copyright (c) 1997-1999 Mark Danks. mark@danks.org
Copyright (c) Günther Geiger. geiger@epy.co.at
Copyright (c) 2001-2002 IOhannes m zmoelnig. forum::für::umläute. IEM. zmoelnig@iem.kug.ac.at
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "GEM.LICENSE.TERMS" in this distribution.
-----------------------------------------------------------------*/
#ifndef INCLUDE_GEMPATHBASE_H_
#define INCLUDE_GEMPATHBASE_H_
#include "Base/CPPExtern.h"
/*-----------------------------------------------------------------
-------------------------------------------------------------------
CLASS
GemPathBase
DESCRIPTION
-----------------------------------------------------------------*/
class GEM_EXTERN GemPathBase : public CPPExtern
{
CPPEXTERN_HEADER(GemPathBase, CPPExtern)
public:
//////////
// Constructor
GemPathBase(int argc, t_atom *argv);
protected:
//////////
// Destructor
virtual ~GemPathBase();
//////////
// When an open is received
virtual void openMess(t_symbol *arrayname);
//////////
// When a float val is received
virtual void floatMess(float val) = 0;
//////////
// The number of dimensions
int m_numDimens;
//////////
// The array
t_garray *m_array;
//////////
// The outlet
t_outlet *m_out1;
private:
//////////
// static member functions
static void openMessCallback(void *data, t_symbol *arrayname);
static void floatMessCallback(void *data, float n);
};
#endif // for header file
|