]> Creatis software - bbtk.git/blob - packages/std/src/bbstdVectorToString.cxx
Cosmetics
[bbtk.git] / packages / std / src / bbstdVectorToString.cxx
1 #include "bbstdVectorToString.h"
2 #include "bbstdPackage.h"
3
4
5 namespace bbstd
6 {
7   //====================================================================
8   BBTK_BLACK_BOX_TEMPLATE_IMPLEMENTATION(VectorToString,
9                                          bbtk::AtomicBlackBox);
10   //====================================================================
11
12 //====================================================================
13
14 //====================================================================
15 // Add the specialized adaptors to the package
16
17 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,int8_t);
18 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,uint8_t);
19 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,int16_t);
20 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,uint16_t);
21 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,int32_t);
22 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,uint32_t);
23 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,long);
24 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,float);
25 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,double);
26 typedef std::string string;
27 BBTK_ADD_TEMPLATE_BLACK_BOX_TO_PACKAGE(std,VectorToString,string);
28 //====================================================================
29
30 } // namespace bbstd