00001 00002 00003 // 00004 // CONNECT.H (c) YoY'01 WEB: www.aestesis.org 00005 // 00008 #ifndef _CONNECT_H_ 00009 #define _CONNECT_H_ 00012 #include "elektrodef.h" 00015 00016 // If you use directly the variables in the class API, it's at your own risks. Prefer the methods... 00017 00020 00021 #define guidCONNECT (Aconnect::CI.guid) 00022 00025 00026 class Aconnect : public Anode 00027 { 00028 public: 00029 ELIBOBJ 00030 00031 EDLL Aconnect (char *name, class Atable *table, class Apin *in, class Apin *out); 00032 EDLL virtual ~Aconnect (); 00033 00034 00035 class Atable *table; 00036 class Apin *out; // the out name pin (from) 00037 class Apin *in; // the in name pin (to) 00038 }; 00039 00042 #endif //_CONNECT_H_