Cat
CatCore_load.cpp
Go to the documentation of this file.
1 // $Id: $
2 // Include files
3 // Include files
4 #include <iostream>
5 
6 //#include "DeclareFactoryEntries.h"
7 #include "DLL.h"
8 
9 // Elements
10 #include "Register.h"
11 #include "RAM.h"
12 #include "UsbI2cBus.h"
13 #include "UsbSpiBus.h"
14 
15 // Processus
16 
17 DECLARE_DLL ( CatCore ){
18  DECLARE_ELEMENT ( RAM,Generic RAM);
20  DECLARE_ELEMENT ( UsbI2cBus, I2c bus from Usb interface );
21  DECLARE_ELEMENT ( UsbSpiBus, Spi bus from Usb interface );
22 }
23 
24 FACTORY ( Element , RAM )
28 
29 
Definition: RAM.h:16
#define DECLARE_ELEMENT(x, y)
Definition: DLL.h:26
#define FACTORY(type, x)
Definition: DLL.h:43
DECLARE_DLL(CatCore)